From fb19df165f7eb9a6be5ace1b7ceb7601b54fb5a1 Mon Sep 17 00:00:00 2001 From: laserlemon Date: Wed, 13 Oct 2010 07:52:37 -0400 Subject: [PATCH] Integrated with Bundler and included the gemspec. --- .gitignore | 1 + Gemfile | 2 ++ Gemfile.lock | 18 +++++++++++++++ simple_oauth.gemspec | 52 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 73 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 simple_oauth.gemspec diff --git a/.gitignore b/.gitignore index c1e0daf..d8efa07 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ rdoc pkg ## PROJECT::SPECIFIC +.bundle diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..817f62a --- /dev/null +++ b/Gemfile @@ -0,0 +1,2 @@ +source 'http://rubygems.org' +gemspec diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..5f3f478 --- /dev/null +++ b/Gemfile.lock @@ -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! diff --git a/simple_oauth.gemspec b/simple_oauth.gemspec new file mode 100644 index 0000000..ce58eab --- /dev/null +++ b/simple_oauth.gemspec @@ -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, [">= 0"]) + else + s.add_dependency(%q, [">= 0"]) + end + else + s.add_dependency(%q, [">= 0"]) + end +end +