Skip to content

Instantly share code, notes, and snippets.

@kuruma-gs
Created August 4, 2011 01:09
Show Gist options
  • Save kuruma-gs/1124294 to your computer and use it in GitHub Desktop.
Save kuruma-gs/1124294 to your computer and use it in GitHub Desktop.
current.gemspec
# -*- 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 = ["kuruma@galileoscope.com"]
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