Skip to content

Commit

Permalink
gemify
Browse files Browse the repository at this point in the history
  • Loading branch information
maccman committed Feb 20, 2010
1 parent 3c960de commit d45fc95
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
pkg
2 changes: 2 additions & 0 deletions README.markdown
@@ -1,4 +1,6 @@
Based on SOAuth: http://github.com/tofumatt/SOAuth

A *simple* OAuth library that supports OAuth header signing, and header verifying.

gem install roauth

Expand Down
13 changes: 13 additions & 0 deletions Rakefile
@@ -0,0 +1,13 @@
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "roauth"
gemspec.summary = "Simple Ruby OAuth library"
gemspec.email = "info@eribium.org"
gemspec.homepage = "http://github.com/maccman/roauth"
gemspec.description = "Simple Ruby OAuth library"
gemspec.authors = ["Alex MacCaw"]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
0.0.1
40 changes: 40 additions & 0 deletions roauth.gemspec
@@ -0,0 +1,40 @@
# 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{roauth}
s.version = "0.0.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Alex MacCaw"]
s.date = %q{2010-02-20}
s.description = %q{Simple Ruby OAuth library}
s.email = %q{info@eribium.org}
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
"LICENSE",
"README.markdown",
"lib/roauth.rb"
]
s.homepage = %q{http://github.com/maccman/roauth}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Simple Ruby OAuth library}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end

0 comments on commit d45fc95

Please sign in to comment.