1
0
Fork 0

Merge pull request #2 from atomaka/feature/rails-5-2

Mark compatible with Rails 5.2
This commit is contained in:
Andrew Tomaka 2018-04-10 01:35:51 -04:00 committed by GitHub
commit 8deee4dc89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 15 deletions

View File

@ -1,29 +1,29 @@
PATH PATH
remote: . remote: .
specs: specs:
psenv (0.2.1) psenv (0.3.0)
aws-sdk-ssm (~> 1) aws-sdk-ssm (~> 1)
psenv-rails (0.2.1) psenv-rails (0.3.0)
psenv (= 0.2.1) psenv (= 0.3.0)
railties (>= 3.2, < 5.2) railties (>= 3.2, < 5.3)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
actionpack (5.1.6) actionpack (5.2.0)
actionview (= 5.1.6) actionview (= 5.2.0)
activesupport (= 5.1.6) activesupport (= 5.2.0)
rack (~> 2.0) rack (~> 2.0)
rack-test (>= 0.6.3) rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2) rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.1.6) actionview (5.2.0)
activesupport (= 5.1.6) activesupport (= 5.2.0)
builder (~> 3.1) builder (~> 3.1)
erubi (~> 1.4) erubi (~> 1.4)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3) rails-html-sanitizer (~> 1.0, >= 1.0.3)
activesupport (5.1.6) activesupport (5.2.0)
concurrent-ruby (~> 1.0, >= 1.0.2) concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2) i18n (>= 0.7, < 2)
minitest (~> 5.1) minitest (~> 5.1)
@ -76,9 +76,9 @@ GEM
nokogiri (>= 1.6) nokogiri (>= 1.6)
rails-html-sanitizer (1.0.4) rails-html-sanitizer (1.0.4)
loofah (~> 2.2, >= 2.2.2) loofah (~> 2.2, >= 2.2.2)
railties (5.1.6) railties (5.2.0)
actionpack (= 5.1.6) actionpack (= 5.2.0)
activesupport (= 5.1.6) activesupport (= 5.2.0)
method_source method_source
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0) thor (>= 0.18.1, < 2.0)

View File

@ -1,3 +1,3 @@
module Psenv module Psenv
VERSION = "0.2.1".freeze VERSION = "0.3.0".freeze
end end

View File

@ -23,5 +23,5 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"] spec.require_paths = ["lib"]
spec.add_dependency "psenv", Psenv::VERSION spec.add_dependency "psenv", Psenv::VERSION
spec.add_dependency "railties", ">= 3.2", "< 5.2" spec.add_dependency "railties", ">= 3.2", "< 5.3"
end end