forked from oauth-xx/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oauth2.gemspec
25 lines (24 loc) · 1.17 KB
/
oauth2.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/oauth2/version", __FILE__)
Gem::Specification.new do |s|
s.name = "oauth2"
s.version = Oauth2::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if s.respond_to? :required_rubygems_version=
s.authors = ["Michael Bleigh"]
s.description = %q{A Ruby wrapper for the OAuth 2.0 protocol built with a similar style to the original OAuth gem.}
s.summary = %q{A Ruby wrapper for the OAuth 2.0 protocol.}
s.email = "[email protected]"
s.extra_rdoc_files = ["LICENSE", "README.rdoc"]
s.rdoc_options = ["--charset=UTF-8"]
s.homepage = "http://github.com/intridea/oauth2"
s.require_paths = ["lib"]
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.add_runtime_dependency("faraday", "~> 0.5.0")
s.add_runtime_dependency("multi_json", "~> 0.0.4")
s.add_development_dependency("json_pure", "~> 1.4.6")
s.add_development_dependency("rake", "~> 0.8")
s.add_development_dependency("rcov", "~> 0.9")
s.add_development_dependency("rspec", "~> 2.0")
end