Project

submodule

0.0
No commit activity in last 3 years
No release in over 3 years
Small gem to simplify building process of gems with git submodules. Tended to be used for ruby gems which wrap js libraries or another assets
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.1.0
>= 0
 Project Readme

submodule

Small gem to simplify building process of gems with git submodules. Tended to be used for ruby gems which wrap js libraries or another assets

Usage

Install gem or add it to Gemfile then put in your Rakefile:

require 'submodule'
Submodule::Task.new do |t|
    t.test do
      # run tests of submodule
    end

    t.after_pull do
      # do something
    end
end

Alternatives

Submodule support only git. Submodule use .gitmodules as config, but vendorer use Vendorfile

TODO

  • Implement: upgrade submodule to the latest version with passing tests