File tree 7 files changed +16
-20
lines changed
lib/grape_entity/exposure 7 files changed +16
-20
lines changed Original file line number Diff line number Diff line change
1
+ --format documentation
1
2
--color
2
- --format = progress
Original file line number Diff line number Diff line change @@ -7,20 +7,19 @@ bundler_args: --without test
7
7
8
8
matrix :
9
9
include :
10
- - rvm : 2.3.1
10
+ - rvm : 2.4.0
11
11
script :
12
12
- bundle exec danger
13
- - rvm : 2.3.1
14
- - rvm : 2.3.0
15
- - rvm : 2.2
16
- - rvm : 2.1
13
+ - rvm : 2.4.0
14
+ - rvm : 2.3.3
15
+ - rvm : 2.2.6
17
16
- rvm : ruby-head
18
- - rvm : jruby-9.1.2 .0
17
+ - rvm : jruby-9.1.6 .0
19
18
- rvm : jruby-head
20
19
- rvm : rbx-2
21
20
22
21
allow_failures :
23
22
- rvm : ruby-head
24
- - rvm : jruby-9.1.2 .0
23
+ - rvm : jruby-9.1.6 .0
25
24
- rvm : jruby-head
26
25
- rvm : rbx-2
Original file line number Diff line number Diff line change 2
2
3
3
#### Features
4
4
5
+ * [ #253 ] ( https://github.com/ruby-grape/grape-entity/pull/253 ) : Adds ruby 2.4.0 support, updates dependencies - [ @LeFnord ] ( https://github.com/LeFnord ) .
5
6
* Your contribution here.
6
7
7
8
#### Fixes
Original file line number Diff line number Diff line change @@ -2,19 +2,14 @@ source 'http://rubygems.org'
2
2
3
3
gemspec
4
4
5
- if RUBY_VERSION < '2.2.2'
6
- gem 'rack' , '<2.0.0'
7
- gem 'activesupport' , '<5.0.0'
8
- end
9
-
10
5
group :development , :test do
11
- gem 'ruby-grape-danger' , '~> 0.1.0 ' , require : false
6
+ gem 'ruby-grape-danger' , '~> 0.1.1 ' , require : false
12
7
end
13
8
14
9
group :test do
10
+ gem 'growl'
15
11
gem 'guard'
16
- gem 'guard-rspec'
17
12
gem 'guard-bundler'
13
+ gem 'guard-rspec'
18
14
gem 'rb-fsevent'
19
- gem 'growl'
20
15
end
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ RSpec::Core::RakeTask.new(:spec)
17
17
require 'rubocop/rake_task'
18
18
RuboCop ::RakeTask . new ( :rubocop )
19
19
20
- task default : [ :rubocop , :spec ]
20
+ task default : [ :spec , :rubocop ]
Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ Gem::Specification.new do |s|
12
12
s . description = 'Extracted from Grape, A Ruby framework for rapid API development with great conventions.'
13
13
s . license = 'MIT'
14
14
15
+ s . required_ruby_version = '>= 2.2.6'
16
+
15
17
s . rubyforge_project = 'grape-entity'
16
18
17
19
s . add_runtime_dependency 'multi_json' , '>= 1.3.2'
18
- s . add_runtime_dependency 'activesupport'
20
+ s . add_runtime_dependency 'activesupport' , '>= 5.0.0'
19
21
20
22
s . add_development_dependency 'bundler'
21
23
s . add_development_dependency 'rake'
Original file line number Diff line number Diff line change @@ -34,8 +34,7 @@ def ==(other)
34
34
@conditions == other . conditions
35
35
end
36
36
37
- def setup
38
- end
37
+ def setup ; end
39
38
40
39
def nesting?
41
40
false
You can’t perform that action at this time.
0 commit comments