Skip to content

Commit

Permalink
Merge pull request #276 from banyan/bcrypt-dependency
Browse files Browse the repository at this point in the history
Fix bcrypt-ruby dependency
  • Loading branch information
NoamB committed Apr 25, 2012
2 parents facc486 + 1ee42cc commit 769b679
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Expand Up @@ -4,6 +4,7 @@ source :rubygems
# gem "activesupport", ">= 2.3.5"
gem 'oauth', "~> 0.4.4"
gem 'oauth2', "~> 0.5.1"
gem 'bcrypt-ruby', "~> 3.0.0"

# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
Expand All @@ -20,7 +21,6 @@ group :development do
gem 'simplecov', '>= 0.3.8', :require => false # Will install simplecov-html as a dependency
gem 'timecop'
gem 'capybara'
gem 'bcrypt-ruby', "~> 3.0.0"
gem 'mongo_mapper'
gem 'mongoid', "~> 2.4.4"
end
end
7 changes: 7 additions & 0 deletions Gemfile.lock
Expand Up @@ -70,6 +70,10 @@ GEM
mime-types (1.18)
mongo (1.6.1)
bson (~> 1.6.1)
mongo_mapper (0.11.1)
activemodel (~> 3.0)
activesupport (~> 3.0)
plucky (~> 0.4.0)
mongoid (2.4.7)
activemodel (~> 3.1)
mongo (~> 1.3)
Expand All @@ -81,6 +85,8 @@ GEM
oauth2 (0.5.2)
faraday (~> 0.7)
multi_json (~> 1.0)
plucky (0.4.4)
mongo (~> 1.5)
polyglot (0.3.3)
rack (1.4.1)
rack-cache (1.2)
Expand Down Expand Up @@ -167,6 +173,7 @@ DEPENDENCIES
capybara
jeweler (~> 1.8.3)
json (>= 1.5.1)
mongo_mapper
mongoid (~> 2.4.4)
oauth (~> 0.4.4)
oauth2 (~> 0.5.1)
Expand Down
13 changes: 8 additions & 5 deletions sorcery.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Noam Ben Ari"]
s.date = "2012-04-18"
s.date = "2012-04-25"
s.description = "Provides common authentication needs such as signing in/out, activating by email and resetting password."
s.email = "nbenari@gmail.com"
s.extra_rdoc_files = [
Expand Down Expand Up @@ -302,7 +302,7 @@ Gem::Specification.new do |s|
s.homepage = "http://github.com/NoamB/sorcery"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.21"
s.rubygems_version = "1.8.23"
s.summary = "Magical authentication for Rails 3 applications"

if s.respond_to? :specification_version then
Expand All @@ -311,6 +311,7 @@ Gem::Specification.new do |s|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<oauth>, ["~> 0.4.4"])
s.add_runtime_dependency(%q<oauth2>, ["~> 0.5.1"])
s.add_runtime_dependency(%q<bcrypt-ruby>, ["~> 3.0.0"])
s.add_development_dependency(%q<rails>, [">= 3.0.0"])
s.add_development_dependency(%q<json>, [">= 1.5.1"])
s.add_development_dependency(%q<rspec>, ["~> 2.5.0"])
Expand All @@ -323,11 +324,12 @@ Gem::Specification.new do |s|
s.add_development_dependency(%q<simplecov>, [">= 0.3.8"])
s.add_development_dependency(%q<timecop>, [">= 0"])
s.add_development_dependency(%q<capybara>, [">= 0"])
s.add_development_dependency(%q<bcrypt-ruby>, ["~> 3.0.0"])
s.add_development_dependency(%q<mongo_mapper>, [">= 0"])
s.add_development_dependency(%q<mongoid>, ["~> 2.4.4"])
else
s.add_dependency(%q<oauth>, ["~> 0.4.4"])
s.add_dependency(%q<oauth2>, ["~> 0.5.1"])
s.add_dependency(%q<bcrypt-ruby>, ["~> 3.0.0"])
s.add_dependency(%q<rails>, [">= 3.0.0"])
s.add_dependency(%q<json>, [">= 1.5.1"])
s.add_dependency(%q<rspec>, ["~> 2.5.0"])
Expand All @@ -340,12 +342,13 @@ Gem::Specification.new do |s|
s.add_dependency(%q<simplecov>, [">= 0.3.8"])
s.add_dependency(%q<timecop>, [">= 0"])
s.add_dependency(%q<capybara>, [">= 0"])
s.add_dependency(%q<bcrypt-ruby>, ["~> 3.0.0"])
s.add_dependency(%q<mongo_mapper>, [">= 0"])
s.add_dependency(%q<mongoid>, ["~> 2.4.4"])
end
else
s.add_dependency(%q<oauth>, ["~> 0.4.4"])
s.add_dependency(%q<oauth2>, ["~> 0.5.1"])
s.add_dependency(%q<bcrypt-ruby>, ["~> 3.0.0"])
s.add_dependency(%q<rails>, [">= 3.0.0"])
s.add_dependency(%q<json>, [">= 1.5.1"])
s.add_dependency(%q<rspec>, ["~> 2.5.0"])
Expand All @@ -358,7 +361,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<simplecov>, [">= 0.3.8"])
s.add_dependency(%q<timecop>, [">= 0"])
s.add_dependency(%q<capybara>, [">= 0"])
s.add_dependency(%q<bcrypt-ruby>, ["~> 3.0.0"])
s.add_dependency(%q<mongo_mapper>, [">= 0"])
s.add_dependency(%q<mongoid>, ["~> 2.4.4"])
end
end
Expand Down

0 comments on commit 769b679

Please sign in to comment.