-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoauth-rest-security.gemspec
More file actions
33 lines (27 loc) · 1.11 KB
/
oauth-rest-security.gemspec
File metadata and controls
33 lines (27 loc) · 1.11 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
31
32
33
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "oauth-rest-security/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "oauth-rest-security"
s.version = OauthRestSecurity::VERSION
s.authors = ["Maximiliano Dello Russo"]
s.email = ["maxidr@gmail.com"]
#s.homepage = "TODO"
s.summary = "Summary of OauthRestSecurity."
#s.description = "TODO: Description of OauthRestSecurity."
#s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.files = Dir["app/**/*", "lib/**/*", "config/**/*", "MIT-LICENSE", "README.rdoc"]
s.add_dependency "rails", "~> 3.1.3"
s.add_dependency 'rest-client'
s.add_dependency 'oauth'
s.add_dependency 'omniauth'
s.add_dependency 'omniauth-oauth2'
s.add_development_dependency 'rails', '~> 3.1.3'
s.add_development_dependency "sqlite3"
s.add_development_dependency 'rspec'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'yard'
s.add_development_dependency 'rest-client'
s.require_paths = ["lib"]
end