Skip to content

Commit

Permalink
tweaked Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacek Podkanski authored and Jacek Podkanski committed Feb 19, 2021
1 parent 613f789 commit a74c417
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions Ruby/generate_ruby_project.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,20 @@ def prepare_gemfile
content = <<~HERE
source 'https://rubygems.org'
gem 'rubocop', require: false
gem 'minitest', '~> 5.3.4'
# https://bundler.io/v1.5/groups.html
# for production deployment
# bundle install --without test development
group :development do
gem 'rubocop', require: false
end
group :development, :test do
gem 'byebug'
end
group :test do
gem 'minitest', '~> 5.3.4'
end
HERE

`echo "#{content}" > Gemfile`
Expand Down

0 comments on commit a74c417

Please sign in to comment.