Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
sorcery/sorcery.gemspec /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
37 lines (29 sloc)
1.37 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| lib = File.expand_path('../lib', __FILE__) | |
| $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
| require 'sorcery/version' | |
| Gem::Specification.new do |s| | |
| s.name = "sorcery" | |
| s.version = Sorcery::VERSION | |
| s.authors = ["Noam Ben Ari", "Kir Shatrov", "Grzegorz Witek"] | |
| s.email = "nbenari@gmail.com" | |
| s.description = "Provides common authentication needs such as signing in/out, activating by email and resetting password." | |
| s.summary = "Magical authentication for Rails 3 & 4 applications" | |
| s.homepage = "http://github.com/NoamB/sorcery" | |
| s.post_install_message = "As of version 1.0 oauth/oauth2 won't be automatically bundled\n" | |
| s.post_install_message += "you need to add those dependencies to your Gemfile" | |
| s.files = `git ls-files`.split($/) | |
| s.require_paths = ["lib"] | |
| s.licenses = ["MIT"] | |
| s.required_ruby_version = '>= 2.0.0' | |
| s.add_dependency "oauth", "~> 0.4", ">= 0.4.4" | |
| s.add_dependency "oauth2", ">= 0.8.0" | |
| s.add_dependency "bcrypt", "~> 3.1" | |
| s.add_development_dependency "abstract", ">= 1.0.0" | |
| s.add_development_dependency "json", ">= 1.7.7" | |
| s.add_development_dependency "yard", "~> 0.6.0" | |
| s.add_development_dependency "timecop" | |
| s.add_development_dependency "simplecov", ">= 0.3.8" | |
| s.add_development_dependency "rspec", "~> 3.1.0" | |
| s.add_development_dependency "rspec-rails", "~> 3.1.0" | |
| s.add_development_dependency "test-unit", "~> 3.1.0" | |
| end |