more tweaking
This commit is contained in:
parent
95e6f33ffb
commit
e373939dec
1
Gemfile
1
Gemfile
|
@ -2,3 +2,4 @@ source "http://rubygems.org"
|
|||
|
||||
# Specify your gem's dependencies in guard-rails.gemspec
|
||||
gemspec
|
||||
gem 'rake', '0.8.7'
|
||||
|
|
|
@ -4,13 +4,13 @@ require "guard/rails/version"
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "guard-rails"
|
||||
s.version = Guard::Rails::VERSION
|
||||
s.version = GuardRails::VERSION
|
||||
s.platform = Gem::Platform::RUBY
|
||||
s.authors = ["TODO: Write your name"]
|
||||
s.email = ["TODO: Write your email address"]
|
||||
s.authors = ["John Bintz"]
|
||||
s.email = ["john@coswellproductions.com"]
|
||||
s.homepage = ""
|
||||
s.summary = %q{TODO: Write a gem summary}
|
||||
s.description = %q{TODO: Write a gem description}
|
||||
s.summary = %q{Restart Rails when things change in your app}
|
||||
s.description = %q{Restart Rails when things change in your app}
|
||||
|
||||
s.rubyforge_project = "guard-rails"
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
module Guard
|
||||
class Rails
|
||||
VERSION = '0.0.1'
|
||||
end
|
||||
module GuardRails
|
||||
VERSION = '0.0.1'
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue