Class: Jeweler::Commands::BuildGem
- Inherits:
-
Object
- Object
- Jeweler::Commands::BuildGem
- Defined in:
- lib/jeweler/commands/build_gem.rb
Instance Attribute Summary collapse
-
#base_dir ⇒ Object
Returns the value of attribute base_dir.
-
#file_utils ⇒ Object
Returns the value of attribute file_utils.
-
#gemspec_helper ⇒ Object
Returns the value of attribute gemspec_helper.
-
#version_helper ⇒ Object
Returns the value of attribute version_helper.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ BuildGem
constructor
A new instance of BuildGem.
- #run ⇒ Object
Constructor Details
#initialize ⇒ BuildGem
Returns a new instance of BuildGem.
6 7 8 |
# File 'lib/jeweler/commands/build_gem.rb', line 6 def initialize self.file_utils = FileUtils end |
Instance Attribute Details
#base_dir ⇒ Object
Returns the value of attribute base_dir.
4 5 6 |
# File 'lib/jeweler/commands/build_gem.rb', line 4 def base_dir @base_dir end |
#file_utils ⇒ Object
Returns the value of attribute file_utils.
4 5 6 |
# File 'lib/jeweler/commands/build_gem.rb', line 4 def file_utils @file_utils end |
#gemspec_helper ⇒ Object
Returns the value of attribute gemspec_helper.
4 5 6 |
# File 'lib/jeweler/commands/build_gem.rb', line 4 def gemspec_helper @gemspec_helper end |
#version_helper ⇒ Object
Returns the value of attribute version_helper.
4 5 6 |
# File 'lib/jeweler/commands/build_gem.rb', line 4 def version_helper @version_helper end |
Class Method Details
.build_for(jeweler) ⇒ Object
25 26 27 28 29 30 31 32 33 |
# File 'lib/jeweler/commands/build_gem.rb', line 25 def self.build_for(jeweler) command = new command.base_dir = jeweler.base_dir command.gemspec_helper = jeweler.gemspec_helper command.version_helper = jeweler.version_helper command end |
Instance Method Details
#run ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/jeweler/commands/build_gem.rb', line 10 def run gemspec_helper.update_version(version_helper) unless gemspec_helper.has_version? gemspec = gemspec_helper.parse require 'rubygems/builder' gem_file_name = Gem::Builder.new(gemspec).build pkg_dir = File.join(base_dir, 'pkg') file_utils.mkdir_p pkg_dir gem_file_name = File.join(base_dir, gem_file_name) file_utils.mv gem_file_name, pkg_dir end |