forked from rossta/opensesame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopensesame.gemspec
32 lines (27 loc) · 1.2 KB
/
opensesame.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "open_sesame/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "opensesame"
s.version = OpenSesame::VERSION
s.authors = ["Ross Kaffenberger"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/rossta/opensesame"
s.summary = "Rails engine for authenticating internal applications and private-access products"
s.description = "Rails engine for authenticating internal applications and private-access products"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails", ">= 3.2"
s.add_dependency "omniauth-github"
s.add_dependency 'octokit', '~> 4.16'
s.add_dependency "faraday-http-cache"
s.add_dependency "warden"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails", "~> 2.14.0"
s.add_development_dependency "capybara"
s.add_development_dependency "nokogiri"
s.add_development_dependency "vcr", "~> 2.9.0"
s.add_development_dependency "fakeweb"
s.add_development_dependency "guard-rspec"
end