-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrails_jwt_api.gemspec
33 lines (24 loc) · 1.24 KB
/
rails_jwt_api.gemspec
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
30
31
32
33
require_relative "lib/rails_jwt_api/version"
Gem::Specification.new do |spec|
spec.name = "rails_jwt_api"
spec.version = RailsJwtApi::VERSION
spec.authors = ["ispirett"]
spec.email = ["ispirett@gmail.com"]
spec.homepage = "https://github.com/Ispirett/rails_jwt_api"
spec.summary = "Use jwt with rails no code"
spec.description = "Integrate jwt in your application with a few simple steps"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/Ispirett/rails_jwt_api"
spec.metadata["changelog_uri"] = "https://github.com/Ispirett/rails_jwt_api/CHANGELOG.md"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", "~> 6.1.4", ">= 6.1.4.1"
spec.add_dependency 'jwt'
spec.add_dependency 'bcrypt', '~> 3.1.16'
spec.add_dependency 'rspec'
spec.add_dependency 'twilio-ruby'
spec.add_dependency 'phonelib', '~> 0.6.53'
end