Skip to content

Commit

Permalink
Make active support dependency explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
syrnick committed Oct 25, 2016
1 parent 6f8fc95 commit 797c497
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion airtable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_dependency "httparty", "~> 0.14.0"
spec.add_dependency "activesupport", ">= 3.0"

spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest", "~> 5.6.0"
spec.add_development_dependency "webmock", "~> 2.1.0"
spec.add_development_dependency "activesupport", ">= 3.0"
end
2 changes: 2 additions & 0 deletions lib/airtable.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require 'httparty'
require 'delegate'
require 'active_support/core_ext/hash'

require 'airtable/version'
require 'airtable/resource'
require 'airtable/record'
Expand Down
1 change: 0 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
require 'webmock/minitest'
require 'minitest/pride'
require 'minitest/autorun'
require 'active_support/core_ext/hash'

def stub_airtable_response!(url, response, method=:get, status=200)

Expand Down

0 comments on commit 797c497

Please sign in to comment.