Gemfile in rest_baby-1.3 vs Gemfile in rest_baby-1.4
- old
+ new
@@ -1,11 +1,21 @@
source 'https://rubygems.org'
-gem 'cucumber'
-gem 'fig_newton'
gem 'json'
gem 'nokogiri'
-gem 'rspec'
-gem 'webmock'
-gem 'rubocop'
-gem 'yard'
-gem 'yard-cucumber'
\ No newline at end of file
+
+group :development do
+ gem 'bundler'
+ gem 'rake'
+ gem 'cucumber'
+ gem 'fig_newton'
+ gem 'rspec'
+ gem 'webmock'
+ gem 'rubocop'
+ if ENV["JRUBY"] || RUBY_PLATFORM == "java"
+ # Skip the yard gems for jruby
+ else
+ gem 'yard'
+ gem 'yard-cucumber'
+ gem 'redcarpet'
+ end
+end