more tweaking

This commit is contained in:
John Bintz 2011-05-27 14:44:38 -04:00
parent 95e6f33ffb
commit e373939dec
3 changed files with 8 additions and 9 deletions

View File

@ -2,3 +2,4 @@ source "http://rubygems.org"
# Specify your gem's dependencies in guard-rails.gemspec # Specify your gem's dependencies in guard-rails.gemspec
gemspec gemspec
gem 'rake', '0.8.7'

View File

@ -4,13 +4,13 @@ require "guard/rails/version"
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "guard-rails" s.name = "guard-rails"
s.version = Guard::Rails::VERSION s.version = GuardRails::VERSION
s.platform = Gem::Platform::RUBY s.platform = Gem::Platform::RUBY
s.authors = ["TODO: Write your name"] s.authors = ["John Bintz"]
s.email = ["TODO: Write your email address"] s.email = ["john@coswellproductions.com"]
s.homepage = "" s.homepage = ""
s.summary = %q{TODO: Write a gem summary} s.summary = %q{Restart Rails when things change in your app}
s.description = %q{TODO: Write a gem description} s.description = %q{Restart Rails when things change in your app}
s.rubyforge_project = "guard-rails" s.rubyforge_project = "guard-rails"

View File

@ -1,6 +1,4 @@
module Guard module GuardRails
class Rails
VERSION = '0.0.1' VERSION = '0.0.1'
end end
end