Skip to content

Commit a68e17a

Browse files
authored
Merge pull request #388 from numbata/disable_test_on_ruby_head,
Drop ruby-head from test matrix to keep builds stable
1 parent d42199e commit a68e17a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
needs: ['rubocop']
2929
strategy:
3030
matrix:
31-
ruby-version: ['3.0', '3.1', '3.2', '3.3', 'head']
31+
ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4']
3232
steps:
3333
- name: Check out branch
3434
uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#### Fixes
88

99
* Your contribution here.
10-
10+
* [#388](https://github.com/ruby-grape/grape-entity/pull/388): Drop ruby-head from test matrix to keep builds stable - [@numbata](https://github.com/numbata).
1111

1212
### ### 1.0.1 (2024-04-10)
1313

bench/serializing.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Teacher < Models::Person
3535
attr_accessor :tenure
3636

3737
def initialize(opts = {})
38-
super(opts)
38+
super
3939
@tenure = opts[:tenure]
4040
end
4141
end
@@ -44,7 +44,7 @@ class Student < Models::Person
4444
attr_reader :grade
4545

4646
def initialize(opts = {})
47-
super(opts)
47+
super
4848
@grade = opts[:grade]
4949
end
5050
end

grape-entity.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
1616

1717
s.required_ruby_version = '>= 3.0'
1818

19-
s.add_runtime_dependency 'activesupport', '>= 3.0.0'
19+
s.add_dependency 'activesupport', '>= 3.0.0'
2020

2121
s.files = `git ls-files`.split("\n")
2222
s.test_files = `git ls-files -- {test,spec}/*`.split("\n")

0 commit comments

Comments
 (0)