update things

This commit is contained in:
John Bintz 2011-11-15 10:45:17 -05:00
parent 1c9a9fa9d8
commit 203ecb6bf8
4 changed files with 6 additions and 3 deletions

View File

@ -1,10 +1,10 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__) $:.push File.expand_path("../lib", __FILE__)
require "guard/rocco/version" require "guard-rocco"
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "guard-rocco" s.name = "guard-rocco"
s.version = Guard::RoccoVersion::VERSION s.version = Guard::Rocco::VERSION
s.platform = Gem::Platform::RUBY s.platform = Gem::Platform::RUBY
s.authors = ["John Bintz"] s.authors = ["John Bintz"]
s.email = ["john@coswellproductions.com"] s.email = ["john@coswellproductions.com"]

1
lib/guard-rocco.rb Normal file
View File

@ -0,0 +1 @@
require 'guard/rocco'

View File

@ -6,6 +6,8 @@ require 'fileutils'
module Guard module Guard
class Rocco < Guard class Rocco < Guard
autoload :VERSION, 'guard/rocco/version'
def initialize(watchers = [], options = {}) def initialize(watchers = [], options = {})
super super

View File

@ -1,5 +1,5 @@
module Guard module Guard
module RoccoVersion module RoccoVersion
VERSION = '0.0.4' VERSION = '0.1.0'
end end
end end