Class: Gemaker::Cmd::CreateGem
- Inherits:
-
Base
- Object
- Base
- Gemaker::Cmd::CreateGem
show all
- Defined in:
- lib/gemaker/commands/create_gem.rb
Instance Method Summary
collapse
Methods inherited from Base
#perform
Methods included from Util
#copy_file, #copy_template, #create_dir, #error, #execute, #execute_in_gem, #gem_root_path, #get_destination_path, #get_template_path, #info, #parse_erb, #remove_in_gem, #utils_path
Instance Method Details
#in_engine_context ⇒ Object
4
5
6
7
8
9
10
11
12
13
14
|
# File 'lib/gemaker/commands/create_gem.rb', line 4
def in_engine_context
commands = [
"echo \"source 'https://rubygems.org'\" > GemakerGemfile",
"echo \"gem 'rails', '~> #{Gemaker::RAILS_VERSION}'\" > GemakerGemfile",
"BUNDLE_GEMFILE=GemakerGemfile bundle install",
"BUNDLE_GEMFILE=GemakerGemfile bundle exec rails plugin new #{@config.gem_name} -T --mountable --dummy-path=spec/dummy", "rm -f GemakerGemfile GemakerGemfile.lock"
]
create_customized_gem(commands.join('; '))
end
|
#in_normal_context ⇒ Object
16
17
18
|
# File 'lib/gemaker/commands/create_gem.rb', line 16
def in_normal_context
create_customized_gem("bundle gem #{@config.gem_name}")
end
|