forked from fphilipe/warden-github-rails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
warden-github-rails.gemspec
25 lines (21 loc) · 1.04 KB
/
warden-github-rails.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'warden/github/rails/version'
Gem::Specification.new do |gem|
gem.name = 'warden-github-rails'
gem.version = Warden::GitHub::Rails::VERSION
gem.authors = ['Philipe Fatio']
gem.email = ['[email protected]']
gem.summary = %q{An easy drop in solution for rails to use GitHub authentication.}
gem.description = gem.summary
gem.homepage = 'https://github.com/fphilipe/warden-github-rails'
gem.files = `git ls-files`.split($/) - Dir.glob('example/**/*')
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.add_development_dependency 'rspec', '~> 3.1'
gem.add_development_dependency 'rails', '>= 3.2'
gem.add_development_dependency 'rack-test', '~> 0.6'
gem.add_development_dependency 'addressable', '~> 2.3'
gem.add_development_dependency 'coveralls' if RUBY_ENGINE == 'ruby'
gem.add_dependency 'warden-github', '~> 1.0'
gem.add_dependency 'railties', '>= 3.1'
end