Skip to content
This repository has been archived by the owner on Dec 22, 2020. It is now read-only.

Commit

Permalink
Specify more precise versions on dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nelhage-stripe committed Apr 13, 2015
1 parent 178e0d1 commit ece33eb
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions mosql.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.version = MoSQL::VERSION

%w[sequel pg mongo bson_ext rake log4r json
].each { |dep| gem.add_runtime_dependency(dep) }
gem.add_runtime_dependency "sequel"
gem.add_runtime_dependency "pg"
gem.add_runtime_dependency "rake"
gem.add_runtime_dependency "log4r"
gem.add_runtime_dependency "json"

gem.add_runtime_dependency "mongoriver", "0.4"

gem.add_runtime_dependency "mongo", "~> 1.10"
gem.add_runtime_dependency "bson", "~> 1.10"
gem.add_runtime_dependency "bson_ext", "~> 1.10"

gem.add_development_dependency "minitest"
gem.add_development_dependency "mocha"
Expand Down

0 comments on commit ece33eb

Please sign in to comment.