Skip to content

Instantly share code, notes, and snippets.

@charliemoseley
Created July 30, 2011 02:59
Show Gist options
  • Save charliemoseley/1115143 to your computer and use it in GitHub Desktop.
Save charliemoseley/1115143 to your computer and use it in GitHub Desktop.
gemspec
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "gdata_request/version"
Gem::Specification.new do |s|
s.name = "gdata_request"
s.version = GdataRequest::VERSION
s.authors = ["Charlie Moseley"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Allows a simple way to make oauth requests to GData}
s.description = %q{Allows a simple way to make oauth requests to GData utilizing an ouath token and secret}
s.rubyforge_project = "gdata_request"
s.add_dependency('activesupport')
s.add_dependency('oauth')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment