Skip to content
This repository was archived by the owner on Nov 28, 2024. It is now read-only.

Commit a63b5c8

Browse files
authored
Merge pull request #683 from Data-Liberation-Front/ruby-2.6
Move to Ruby 2.6
2 parents 1bcddb5 + 8cc2674 commit a63b5c8

File tree

5 files changed

+22
-9
lines changed

5 files changed

+22
-9
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: ruby/setup-ruby@v1
1616
with:
1717
bundler-cache: true
18-
ruby-version: 2.5
18+
ruby-version: 2.6
1919
- name: Start MongoDB
2020
uses: supercharge/[email protected]
2121
with:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.9
1+
2.6.9

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://rubygems.org'
2-
ruby '~> 2.5'
2+
ruby '~> 2.6'
33

44
gem 'rake', '~> 13.0'
55
gem 'rails', '~> 4.2'
@@ -95,7 +95,7 @@ gem 'jquery-dotdotdot-rails', '~> 1.6'
9595
gem 'alternate_rails', git: 'https://github.com/Data-Liberation-Front/alternate-rails.git', ref: 'v4.2.0'
9696
gem 'rack-cors', '~> 1.0'
9797

98-
gem 'resumable_upload', git: 'https://github.com/Data-Liberation-Front/resumable-upload.git', ref: 'v0.1.0'
98+
gem 'resumable_upload', git: 'https://github.com/Data-Liberation-Front/resumable-upload.git', ref: 'v0.2.0'
9999
gem 'pusher', '~> 1.4'
100100
gem 'cloudflare', '~> 2.1'
101101

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ GIT
4040

4141
GIT
4242
remote: https://github.com/Data-Liberation-Front/resumable-upload.git
43-
revision: e3f043392da456bf57a8b1696bae4434d215183b
44-
ref: v0.1.0
43+
revision: 6350c156cbae90f3a49af4f900cfbed35904ad90
44+
ref: v0.2.0
4545
specs:
46-
resumable_upload (0.1.0)
46+
resumable_upload (0.2.0)
4747
dotenv
4848
fog (~> 1.36)
4949
rails (~> 4.0)
@@ -188,7 +188,7 @@ GEM
188188
dotenv-rails (2.7.6)
189189
dotenv (= 2.7.6)
190190
railties (>= 3.2)
191-
dry-inflector (0.2.0)
191+
dry-inflector (0.2.1)
192192
ebnf (1.2.0)
193193
rdf (~> 3.1)
194194
sxp (~> 1.1)
@@ -830,7 +830,7 @@ DEPENDENCIES
830830
webmock (~> 3.12)
831831

832832
RUBY VERSION
833-
ruby 2.5.9p229
833+
ruby 2.6.9p207
834834

835835
BUNDLED WITH
836836
1.17.3
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
if RUBY_VERSION >= "2.6.0"
2+
if Rails.version < "5"
3+
module ActionController
4+
class TestResponse < ActionDispatch::TestResponse
5+
def recycle!
6+
@mon_mutex_owner_object_id = nil
7+
@mon_mutex = nil
8+
initialize
9+
end
10+
end
11+
end
12+
end
13+
end

0 commit comments

Comments
 (0)