Gemfile in statesman-3.2.0 vs Gemfile in statesman-3.3.0

- old
+ new

@@ -1,15 +1,16 @@ source 'https://rubygems.org' gemspec gem "rails", "~> #{ENV['RAILS_VERSION']}" if ENV["RAILS_VERSION"] -gem "ruboconfig", git: "https://github.com/gocardless/ruboconfig", tag: "v1.0.1" group :development do gem "mongoid", ">= 3.1" unless ENV["EXCLUDE_MONGOID"] # test/unit is no longer bundled with Ruby 2.2, but required by Rails - if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.2.0") - gem "test-unit", "~> 3.0" - end + gem "test-unit", "~> 3.0" if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.2.0") +end + +group :development, :test do + gem "gc_ruboconfig", "~> 2.1.0" end