Class: Restspec::Install::InstallRunner
- Inherits:
-
Thor::Group
- Object
- Thor::Group
- Restspec::Install::InstallRunner
- Includes:
- Thor::Actions
- Defined in:
- lib/restspec/runners/install/install_runner.rb
Class Method Summary collapse
Instance Method Summary collapse
- #copy_gemfile ⇒ Object
- #create_api_dsl_files ⇒ Object
- #create_project_dir ⇒ Object
- #create_rspec_config ⇒ Object
- #create_spec_folders ⇒ Object
- #create_spec_helper ⇒ Object
- #create_support_files ⇒ Object
- #install_gems ⇒ Object
Class Method Details
.source_root ⇒ Object
10 11 12 |
# File 'lib/restspec/runners/install/install_runner.rb', line 10 def self.source_root File.dirname(__FILE__) end |
Instance Method Details
#copy_gemfile ⇒ Object
18 19 20 |
# File 'lib/restspec/runners/install/install_runner.rb', line 18 def copy_gemfile copy_file 'templates/Gemfile', "#{project}/Gemfile" end |
#create_api_dsl_files ⇒ Object
36 37 38 39 40 |
# File 'lib/restspec/runners/install/install_runner.rb', line 36 def create_api_dsl_files create_file "#{project}/spec/api/restspec/api_endpoints.rb" create_file "#{project}/spec/api/restspec/api_schemas.rb" create_file "#{project}/spec/api/restspec/api_requirements.rb" end |
#create_project_dir ⇒ Object
14 15 16 |
# File 'lib/restspec/runners/install/install_runner.rb', line 14 def create_project_dir empty_directory project end |
#create_rspec_config ⇒ Object
32 33 34 |
# File 'lib/restspec/runners/install/install_runner.rb', line 32 def create_rspec_config template 'templates/restspec_config.rb', "#{project}/spec/api/restspec/restspec_config.rb" end |
#create_spec_folders ⇒ Object
22 23 24 25 26 |
# File 'lib/restspec/runners/install/install_runner.rb', line 22 def create_spec_folders empty_directory "#{project}/spec" empty_directory "#{project}/spec/api" empty_directory "#{project}/spec/support" end |
#create_spec_helper ⇒ Object
28 29 30 |
# File 'lib/restspec/runners/install/install_runner.rb', line 28 def create_spec_helper template 'templates/spec_helper.rb', "#{project}/spec/spec_helper.rb" end |
#create_support_files ⇒ Object
42 43 44 45 |
# File 'lib/restspec/runners/install/install_runner.rb', line 42 def create_support_files create_file "#{project}/spec/support/custom_matchers.rb" copy_file "templates/custom_macros.rb", "#{project}/spec/support/custom_macros.rb" end |
#install_gems ⇒ Object
47 48 49 |
# File 'lib/restspec/runners/install/install_runner.rb', line 47 def install_gems inside(project) { run 'bundle install' } end |