mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-03-25 08:45:54 +00:00
Integrated with Bundler and included the gemspec.
This commit is contained in:
parent
090f1de829
commit
fb19df165f
4 changed files with 73 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -19,3 +19,4 @@ rdoc
|
|||
pkg
|
||||
|
||||
## PROJECT::SPECIFIC
|
||||
.bundle
|
||||
|
|
|
|||
2
Gemfile
Normal file
2
Gemfile
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
source 'http://rubygems.org'
|
||||
gemspec
|
||||
18
Gemfile.lock
Normal file
18
Gemfile.lock
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
simple_oauth (0.1.0)
|
||||
|
||||
GEM
|
||||
remote: http://rubygems.org/
|
||||
specs:
|
||||
mocha (0.9.8)
|
||||
rake
|
||||
rake (0.8.7)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
mocha
|
||||
simple_oauth!
|
||||
52
simple_oauth.gemspec
Normal file
52
simple_oauth.gemspec
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# Generated by jeweler
|
||||
# DO NOT EDIT THIS FILE DIRECTLY
|
||||
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
||||
# -*- encoding: utf-8 -*-
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{simple_oauth}
|
||||
s.version = "0.1.0"
|
||||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["Steve Richert"]
|
||||
s.date = %q{2010-10-13}
|
||||
s.description = %q{Simply builds and verifies OAuth headers}
|
||||
s.email = %q{steve.richert@gmail.com}
|
||||
s.extra_rdoc_files = [
|
||||
"LICENSE",
|
||||
"README.rdoc"
|
||||
]
|
||||
s.files = [
|
||||
".gitignore",
|
||||
"LICENSE",
|
||||
"README.rdoc",
|
||||
"Rakefile",
|
||||
"init.rb",
|
||||
"lib/simple_oauth.rb",
|
||||
"test/helper.rb",
|
||||
"test/simple_oauth_test.rb"
|
||||
]
|
||||
s.homepage = %q{http://github.com/laserlemon/simple_oauth}
|
||||
s.rdoc_options = ["--charset=UTF-8"]
|
||||
s.require_paths = ["lib"]
|
||||
s.rubygems_version = %q{1.3.7}
|
||||
s.summary = %q{Simply builds and verifies OAuth headers}
|
||||
s.test_files = [
|
||||
"test/helper.rb",
|
||||
"test/simple_oauth_test.rb"
|
||||
]
|
||||
|
||||
if s.respond_to? :specification_version then
|
||||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
||||
s.specification_version = 3
|
||||
|
||||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||
s.add_development_dependency(%q<mocha>, [">= 0"])
|
||||
else
|
||||
s.add_dependency(%q<mocha>, [">= 0"])
|
||||
end
|
||||
else
|
||||
s.add_dependency(%q<mocha>, [">= 0"])
|
||||
end
|
||||
end
|
||||
|
||||
Loading…
Reference in a new issue