Skip to content

Commit

Permalink
Adding minimum Rails support to 5 and upgrading security patches
Browse files Browse the repository at this point in the history
  • Loading branch information
bwillis committed Mar 11, 2020
1 parent 099e0da commit 6dadb27
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
37 changes: 19 additions & 18 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ PATH
remote: .
specs:
versioncake (3.4.0)
actionpack (>= 3.2)
activesupport (>= 3.2)
railties (>= 3.2)
actionpack (>= 5.0)
activesupport (>= 5.0)
railties (>= 5.0)
tzinfo

GEM
Expand Down Expand Up @@ -32,43 +32,44 @@ GEM
bundler
rake
thor (>= 0.14.0)
builder (3.2.3)
concurrent-ruby (1.0.5)
builder (3.2.4)
concurrent-ruby (1.1.6)
coveralls (0.8.21)
json (>= 1.8, < 3)
simplecov (~> 0.14.1)
term-ansicolor (~> 1.3)
thor (~> 0.19.4)
tins (~> 1.6)
crass (1.0.5)
crass (1.0.6)
diff-lcs (1.3)
docile (1.1.5)
erubi (1.7.0)
i18n (0.8.6)
erubi (1.9.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
json (2.1.0)
loofah (2.3.1)
loofah (2.4.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
method_source (0.9.0)
mini_portile2 (2.1.0)
minitest (5.10.3)
nokogiri (1.6.8.1)
mini_portile2 (~> 2.1.0)
mini_portile2 (2.4.0)
minitest (5.14.0)
nokogiri (1.10.9)
mini_portile2 (~> 2.4.0)
rack (2.0.3)
rack-test (0.7.0)
rack (>= 1.0, < 3)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.0.4)
loofah (~> 2.2, >= 2.2.2)
rails-html-sanitizer (1.3.0)
loofah (~> 2.3)
railties (5.1.4)
actionpack (= 5.1.4)
activesupport (= 5.1.4)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (12.1.0)
rake (13.0.1)
rspec (3.6.0)
rspec-core (~> 3.6.0)
rspec-expectations (~> 3.6.0)
Expand Down Expand Up @@ -100,7 +101,7 @@ GEM
thor (0.19.4)
thread_safe (0.3.6)
tins (1.15.0)
tzinfo (1.2.3)
tzinfo (1.2.6)
thread_safe (~> 0.1)

PLATFORMS
Expand All @@ -115,4 +116,4 @@ DEPENDENCIES
versioncake!

BUNDLED WITH
1.16.3
1.17.2
6 changes: 3 additions & 3 deletions versioncake.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 1.9.2'

s.add_dependency('actionpack', '>= 3.2')
s.add_dependency('activesupport', '>= 3.2')
s.add_dependency('railties', '>= 3.2')
s.add_dependency('actionpack', '>= 5.0')
s.add_dependency('activesupport', '>= 5.0')
s.add_dependency('railties', '>= 5.0')
s.add_dependency('tzinfo')

s.add_development_dependency 'appraisal'
Expand Down

0 comments on commit 6dadb27

Please sign in to comment.