Gemfile in dry-initializer-3.0.2 vs Gemfile in dry-initializer-3.0.3

- old
+ new

@@ -1,38 +1,36 @@ -source "https://rubygems.org" +source 'https://rubygems.org' -# Specify your gem"s dependencies in dry-initializer.gemspec +eval_gemfile 'Gemfile.devtools' + gemspec -unless ENV['CI'].eql?('true') - group :benchmarks do - if RUBY_VERSION < "2.4" - gem "activesupport", "< 5" - else - gem "activesupport" - end - - gem "active_attr" - gem "anima" - gem "attr_extras" - gem "benchmark-ips", "~> 2.5" - gem "concord" - gem "fast_attributes" - gem "kwattr" - gem "ruby-prof", platform: :mri - gem "value_struct" - gem "values" - gem "virtus" - end +if ENV['DRY_TYPES_FROM_MASTER'].eql?('true') + gem 'dry-types', github: 'dry-rb/dry-types', branch: 'master' +else + gem 'dry-types' end -group :development, :test do - gem "pry", platform: :mri - gem "pry-byebug", platform: :mri - if RUBY_VERSION >= "2.4" - gem 'ossy', git: 'https://github.com/solnic/ossy.git', branch: 'master', platform: :mri +group :benchmarks do + if RUBY_VERSION < '2.4' + gem 'activesupport', '< 5' + else + gem 'activesupport' end + + gem 'active_attr' + gem 'anima' + gem 'attr_extras' + gem 'benchmark-ips', '~> 2.5' + gem 'concord' + gem 'fast_attributes' + gem 'kwattr' + gem 'ruby-prof', platform: :mri + gem 'value_struct' + gem 'values' + gem 'virtus' end -group :test do - gem 'simplecov', require: false +group :development, :test do + gem 'pry', platform: :mri + gem 'pry-byebug', platform: :mri end