forked from sr/sinatra_auth_github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsinatra_auth_github.gemspec
More file actions
30 lines (25 loc) · 1.1 KB
/
Copy pathsinatra_auth_github.gemspec
File metadata and controls
30 lines (25 loc) · 1.1 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sinatra/auth/github/version"
Gem::Specification.new do |s|
s.name = "sinatra_auth_github"
s.version = Sinatra::Auth::Github::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Corey Donohoe"]
s.email = ["atmos@atmos.org"]
s.homepage = "http://github.com/atmos/sinatra_auth_github"
s.summary = "A sinatra extension for easy oauth integration with github"
s.description = s.summary
s.rubyforge_project = "sinatra_auth_github"
s.add_dependency "sinatra", "~>1.0"
s.add_dependency "warden-github", "~>0.14.0"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~>2.4.0"
s.add_development_dependency "shotgun"
s.add_development_dependency "randexp", "~>0.1.5"
s.add_development_dependency "rack-test", "~>0.5.3"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end