Created
August 4, 2011 01:09
-
-
Save kuruma-gs/1124294 to your computer and use it in GitHub Desktop.
current.gemspec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- encoding: utf-8 -*- | |
lib = File.expand_path('../lib/', __FILE__) | |
$:.unshift lib unless $:.include?(lib) | |
require "current/version" | |
Gem::Specification.new do |s| | |
s.name = "current" | |
s.version = Current::VERSION | |
s.platform = Gem::Platform::RUBY | |
s.authors = ["kuruma3"] | |
s.email = ["[email protected]"] | |
s.homepage = %q{http://github.com/#{github_username}/#{project_name}} | |
s.summary = "use current object in models" | |
s.description = "use current object in models" | |
s.required_rubygems_version = ">= 1.3.6" | |
s.add_dependency("rails", [">= 3.0.0"]) | |
s.files = Dir.glob("lib/**/*") + %w(README.rdoc Rakefile) | |
s.require_path = 'lib' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment