File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
language : ruby
3
- sudo : false
4
3
cache : bundler
5
- before_install : gem install bundler --no-ri --no-rdoc
6
4
bundler_args : --without benchmarks tools
7
5
script :
8
- - bundle exec rake
6
+ - bundle exec rake spec
9
7
- bundle exec rubocop
10
8
rvm :
11
9
- 2.3.0
12
- - 2.4.0
10
+ - 2.6.2
13
11
- ruby-head
14
12
matrix :
15
13
allow_failures :
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
+ ## [ 3.1.1] [ 2018-05-06]
9
+ - support ` dry-initializer ` v3+ (nepalez)
10
+
8
11
## [ 3.1.0] [ 2018-02-12]
9
12
- support ` ActiveRecord::Relation ` in models (nepalez)
10
13
@@ -46,3 +49,4 @@ First public release
46
49
[ 2.0.0 ] : https://github.com/nepalez/dry-initializer-rails/compare/v1.0.0...v2.0.0
47
50
[ 3.0.0 ] : https://github.com/nepalez/dry-initializer-rails/compare/v2.0.0...v3.0.0
48
51
[ 3.1.0 ] : https://github.com/nepalez/dry-initializer-rails/compare/v3.0.0...v3.1.0
52
+ [ 3.1.1 ] : https://github.com/nepalez/dry-initializer-rails/compare/v3.1.0...v3.1.1
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Gem Version] ( https://badge.fury.io/rb/dry-initializer-rails.svg )] [ gem ]
4
4
[ ![ Build Status] ( https://travis-ci.org/nepalez/dry-initializer-rails.svg?branch=master )] [ travis ]
5
- [ ![ Dependency Status] ( https://gemnasium.com/nepalez/dry-initializer-rails.svg )] [ gemnasium ]
6
5
[ ![ Code Climate] ( https://codeclimate.com/github/nepalez/dry-initializer-rails/badges/gpa.svg )] [ codeclimate ]
7
6
[ ![ Test Coverage] ( https://codeclimate.com/github/nepalez/dry-initializer-rails/badges/coverage.svg )] [ coveralls ]
8
7
[ ![ Inline docs] ( http://inch-ci.org/github/nepalez/dry-initializer-rails.svg?branch=master )] [ inchpages ]
9
8
10
9
[ gem ] : https://rubygems.org/gems/dry-initializer-rails
11
10
[ travis ] : https://travis-ci.org/nepalez/dry-initializer-rails
12
- [ gemnasium ] : https://gemnasium.com/nepalez/dry-initializer-rails
13
11
[ codeclimate ] : https://codeclimate.com/github/nepalez/dry-initializer-rails
14
12
[ coveralls ] : https://coveralls.io/r/nepalez/dry-initializer-rails
15
13
[ inchpages ] : http://inch-ci.org/github/nepalez/dry-initializer-rails
Original file line number Diff line number Diff line change 1
1
Gem ::Specification . new do |gem |
2
2
gem . name = "dry-initializer-rails"
3
- gem . version = "3.1.0 "
3
+ gem . version = "3.1.1 "
4
4
gem . author = [ "Vladimir Kochnev (marshall-lee)" , "Andrew Kozin (nepalez)" ]
5
5
gem . email = [ "andrew.kozin@gmail.com" ]
6
6
gem . homepage = "https://github.com/nepalez/dry-initializer-rails"
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
14
14
gem . required_ruby_version = ">= 2.3"
15
15
16
16
gem . add_runtime_dependency "rails" , "> 3.0"
17
- gem . add_runtime_dependency "dry-initializer" , "~> 2.4"
17
+ gem . add_runtime_dependency "dry-initializer" , ">= 2.4" , "< 4"
18
18
19
19
gem . add_development_dependency "rspec" , "~> 3.0"
20
20
gem . add_development_dependency "rake" , "> 10.0"
You can’t perform that action at this time.
0 commit comments