Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
buildgem / lib / buildgem / committer.rb
Size: Mime:
module Buildgem
  class Committer
    include ForwardGemMethodsToConfig

    class << self
      def commit!
        `cd #{gem_path} && git commit #{gem_version_file_path} -m "Bump! #{gem_version}"`
      end
    end
  end
end