Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 21 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
PATH
remote: .
specs:
arbor (0.0.1)
activesupport (>= 3.0.0)
httpi
arbor (1.0.3)
activesupport (~> 4.1.11)
httpi (>= 2.0.5)
rack (>= 1.6.11)

GEM
remote: https://rubygems.org/
specs:
activesupport (4.1.5)
activesupport (4.1.16)
i18n (~> 0.6, >= 0.6.9)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.1)
tzinfo (~> 1.1)
httpi (2.0.2)
concurrent-ruby (1.1.5)
httpi (2.4.4)
rack
i18n (0.6.11)
json (1.8.1)
minitest (5.4.1)
rack (1.5.2)
rake (10.3.2)
thread_safe (0.3.4)
tzinfo (1.2.2)
socksify
i18n (0.9.5)
concurrent-ruby (~> 1.0)
json (1.8.6)
minitest (5.12.2)
rack (2.0.7)
rake (0.9.6)
socksify (1.7.1)
thread_safe (0.3.6)
tzinfo (1.2.5)
thread_safe (~> 0.1)

PLATFORMS
Expand All @@ -31,4 +36,7 @@ PLATFORMS
DEPENDENCIES
arbor!
bundler (~> 1.3)
rake
rake (~> 0)

BUNDLED WITH
1.17.3
3 changes: 2 additions & 1 deletion arbor.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_dependency "activesupport", ">= 3.0.0"
spec.add_dependency "rack", ">= 1.6.11"
spec.add_dependency "activesupport", "~> 4.1.11"
spec.add_dependency "httpi", ">= 2.0.5"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", "~> 0"
Expand Down