-
Notifications
You must be signed in to change notification settings - Fork 7
/
wor-authentication.gemspec
40 lines (35 loc) · 1.73 KB
/
wor-authentication.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
34
35
36
37
38
39
40
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wor/authentication/version'
require 'date'
Gem::Specification.new do |spec|
spec.name = 'wor-authentication'
spec.version = Wor::Authentication::VERSION
spec.platform = Gem::Platform::RUBY
spec.date = Date.today
spec.authors = ['alebian', 'mishuagopian']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'Easily add authentication to your application!.'
spec.description = 'Gem to add authentication to your application using JWT, with expirable, renewable and customizable tokens.'
spec.homepage = 'https://github.com/Wolox/wor-authentication'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec)/}) }
spec.test_files = spec.files.grep(%r{^(test|spec)/})
spec.require_paths = ['lib']
spec.add_dependency 'railties', '>= 4.1.0', '< 5.2'
spec.add_dependency 'devise', '>= 4.2.0'
spec.add_dependency 'jwt', '~> 2.0'
spec.add_dependency 'rails', '>= 4.0'
spec.add_development_dependency 'byebug', '~> 9.0'
spec.add_development_dependency 'rubocop', '~> 0.47'
spec.add_development_dependency 'bundler', '~> 1.13'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rspec-rails', '~> 3.5'
spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0.0'
spec.add_development_dependency 'generator_spec'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'timecop'
spec.add_development_dependency 'sqlite3'
end