-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathjwt_authentication.gemspec
More file actions
29 lines (23 loc) · 1010 Bytes
/
jwt_authentication.gemspec
File metadata and controls
29 lines (23 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "jwt_authentication/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "jwt_authentication"
s.version = JwtAuthentication::VERSION
s.authors = ["author"]
s.email = ["auther@mail.com"]
s.homepage = "https://github.com/"
s.summary = "Jwt authentication for Rails apps or API with Devise."
s.license = "GPLv3"
s.files = Dir["{app,config,doc,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "actionmailer", ">= 3.2.6", "< 5"
s.add_dependency "actionpack", ">= 3.2.6", "< 5"
s.add_dependency "devise", "~> 3.2"
s.add_dependency "jwt", "~> 1.2.1"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "inch", "~> 0.4"
s.add_development_dependency "activerecord", ">= 3.2.6", "< 5"
s.add_development_dependency 'mongoid', '>= 3.1.0', '< 5'
end