Skip to content

Commit

Permalink
Merge pull request #6 from NestAway/support_rails_5
Browse files Browse the repository at this point in the history
Update activesupport to 5
  • Loading branch information
ranveernitk authored Dec 28, 2017
2 parents 0028cdd + 83a8ccd commit 2af5a15
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sudo: false
language: ruby
rvm:
- 2.1.7
- 2.4.1
17 changes: 11 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
PATH
remote: .
specs:
rule-interface (1.0.3)
activesupport (~> 3)
rule-interface (1.1.0)
activesupport (~> 5)
rest-client (~> 1)

GEM
remote: https://rubygems.org/
specs:
activesupport (3.2.22.5)
i18n (~> 0.6, >= 0.6.4)
multi_json (~> 1.0)
activesupport (5.1.4)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
addressable (2.5.2)
public_suffix (>= 2.0.2, < 4.0)
byebug (9.0.6)
Expand All @@ -26,7 +28,7 @@ GEM
i18n (0.9.1)
concurrent-ruby (~> 1.0)
mime-types (2.99.3)
multi_json (1.12.2)
minitest (5.10.3)
netrc (0.11.0)
public_suffix (3.0.1)
rake (10.5.0)
Expand All @@ -48,6 +50,9 @@ GEM
rspec-support (~> 3.7.0)
rspec-support (3.7.0)
safe_yaml (1.0.4)
thread_safe (0.3.6)
tzinfo (1.2.4)
thread_safe (~> 0.1)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.4)
Expand Down
1 change: 1 addition & 0 deletions lib/rule-interface.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'active_support/core_ext/object'
require 'active_support/json'
require 'rest-client'

Dir[File.expand_path('rule-interface/*.rb', File.dirname(__FILE__))].each do |file|
Expand Down
2 changes: 1 addition & 1 deletion lib/rule-interface/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RuleInterface
VERSION = '1.0.3'.freeze
VERSION = '1.1.0'.freeze
end
2 changes: 1 addition & 1 deletion rule-interface.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 1.9.8'
s.require_paths = ['lib']

s.add_dependency 'activesupport', '~> 3'
s.add_dependency 'activesupport', '~> 5'
s.add_dependency 'rest-client', '~> 1'

s.add_development_dependency 'webmock',' ~> 3'
Expand Down

0 comments on commit 2af5a15

Please sign in to comment.