Class: Embryo::RspecGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
GeneratorHelpers::Hidden
Defined in:
lib/generators/embryo/rspec.rb

Instance Method Summary collapse

Methods included from GeneratorHelpers::Hidden

included, namespaces

Instance Method Details

#installObject



7
8
9
10
11
12
# File 'lib/generators/embryo/rspec.rb', line 7

def install
  gem "rspec-rails", "~> 3.0", group: [:development, :test]
  create_file "spec/spec_helper.rb", spec_helper_data
  create_file "spec/rails_helper.rb", rails_helper_data
  remove_dir "test"
end