forked from Sorcery/sorcery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
78 additions
and
85 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,33 +3,33 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
require 'sorcery/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "sorcery" | ||
s.name = 'sorcery' | ||
s.version = Sorcery::VERSION | ||
s.authors = ["Noam Ben Ari", "Kir Shatrov", "Grzegorz Witek"] | ||
s.email = "[email protected]" | ||
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 = "https://github.com/Sorcery/sorcery" | ||
s.authors = ['Noam Ben Ari', 'Kir Shatrov', 'Grzegorz Witek'] | ||
s.email = '[email protected]' | ||
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 = 'https://github.com/Sorcery/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.post_install_message += 'you need to add those dependencies to your Gemfile' | ||
|
||
s.files = `git ls-files`.split($/) | ||
s.require_paths = ["lib"] | ||
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) | ||
s.require_paths = ['lib'] | ||
|
||
s.licenses = ["MIT"] | ||
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_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 '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-rails", "~> 3.5.0" | ||
s.add_development_dependency "test-unit", "~> 3.1.0" | ||
s.add_development_dependency 'timecop' | ||
s.add_development_dependency 'simplecov', '>= 0.3.8' | ||
s.add_development_dependency 'rspec-rails', '~> 3.5.0' | ||
s.add_development_dependency 'test-unit', '~> 3.1.0' | ||
end |
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
Oops, something went wrong.