Sha256: c0f44bbd45573d72f9cb3eb2863d34fec124f8f76b89c9daabb9ab0ea8d2418d
Contents?: true
Size: 645 Bytes
Versions: 4
Compression:
Stored size: 645 Bytes
Contents
module Dockman module Dockify class SetupGenerator < Rails::Generators::Base source_root File.expand_path('../templates', __FILE__) desc 'This will install some needed Gems' def add_rspec gem_group :development, :test do gem 'rspec-rails', '~> 3.8' end end def add_guard gem_group :development do gem 'guard-rspec', '~> 4.7', require: false gem 'spring-commands-rspec' gem 'rubocop', '~> 0.60' end end def finalize system 'bundle install' system 'bundle exec guard init rspec' end end end end
Version data entries
4 entries across 4 versions & 1 rubygems