Bump to 0.1.0
This commit is contained in:
parent
9641f3e2a4
commit
5fc3ae7f52
@ -1,7 +1,7 @@
|
|||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
guard (0.1.0.beta.1)
|
guard (0.1.0)
|
||||||
bundler (~> 1.0.2)
|
bundler (~> 1.0.2)
|
||||||
growl (~> 1.0.3)
|
growl (~> 1.0.3)
|
||||||
libnotify (~> 0.1.3)
|
libnotify (~> 0.1.3)
|
||||||
@ -16,8 +16,8 @@ GEM
|
|||||||
ffi (0.6.3)
|
ffi (0.6.3)
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.8.7)
|
||||||
growl (1.0.3)
|
growl (1.0.3)
|
||||||
guard-rspec (0.1.0.beta.2)
|
guard-rspec (0.1.0)
|
||||||
guard (~> 0.1.0.beta.1)
|
guard (~> 0.1.0.beta.2)
|
||||||
rspec (~> 2.0.0.rc)
|
rspec (~> 2.0.0.rc)
|
||||||
libnotify (0.1.4)
|
libnotify (0.1.4)
|
||||||
ffi (>= 0.6.2)
|
ffi (>= 0.6.2)
|
||||||
@ -44,7 +44,7 @@ DEPENDENCIES
|
|||||||
bundler (~> 1.0.2)
|
bundler (~> 1.0.2)
|
||||||
growl (~> 1.0.3)
|
growl (~> 1.0.3)
|
||||||
guard!
|
guard!
|
||||||
guard-rspec (~> 0.1.0.beta.2)
|
guard-rspec (~> 0.1.0)
|
||||||
libnotify (~> 0.1.3)
|
libnotify (~> 0.1.3)
|
||||||
rb-inotify (~> 0.8.1)
|
rb-inotify (~> 0.8.1)
|
||||||
rspec (~> 2.0.0.rc)
|
rspec (~> 2.0.0.rc)
|
||||||
|
15
Rakefile
15
Rakefile
@ -4,3 +4,18 @@ Bundler::GemHelper.install_tasks
|
|||||||
require 'rspec/core/rake_task'
|
require 'rspec/core/rake_task'
|
||||||
RSpec::Core::RakeTask.new(:spec)
|
RSpec::Core::RakeTask.new(:spec)
|
||||||
task :default => :spec
|
task :default => :spec
|
||||||
|
|
||||||
|
namespace(:spec) do
|
||||||
|
desc "Run all specs on multiple ruby versions (requires rvm)"
|
||||||
|
task(:portability) do
|
||||||
|
%w[1.8.7 1.9.2].each do |version|
|
||||||
|
system <<-BASH
|
||||||
|
bash -c 'source ~/.rvm/scripts/rvm;
|
||||||
|
rvm #{version};
|
||||||
|
echo "--------- version #{version} ----------\n";
|
||||||
|
bundle install;
|
||||||
|
rake spec'
|
||||||
|
BASH
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
@ -9,14 +9,14 @@ Gem::Specification.new do |s|
|
|||||||
s.authors = ['Thibaud Guillaume-Gentil']
|
s.authors = ['Thibaud Guillaume-Gentil']
|
||||||
s.email = ['thibaud@thibaud.me']
|
s.email = ['thibaud@thibaud.me']
|
||||||
s.homepage = 'http://rubygems.org/gems/guard'
|
s.homepage = 'http://rubygems.org/gems/guard'
|
||||||
s.summary = 'Guard keep an eye on your files event'
|
s.summary = 'Guard keep an eye on your files modifications.'
|
||||||
s.description = 'Guard is a command line tool to easly manage script launch when your files change'
|
s.description = 'Guard is a command line tool to easly handle events on files modifications.'
|
||||||
|
|
||||||
s.required_rubygems_version = '>= 1.3.6'
|
s.required_rubygems_version = '>= 1.3.6'
|
||||||
s.rubyforge_project = 'guard'
|
s.rubyforge_project = 'guard'
|
||||||
|
|
||||||
s.add_development_dependency 'rspec', '~> 2.0.0.rc'
|
s.add_development_dependency 'rspec', '~> 2.0.0.rc'
|
||||||
s.add_development_dependency 'guard-rspec', '~> 0.1.0.beta.2'
|
s.add_development_dependency 'guard-rspec', '~> 0.1.0'
|
||||||
|
|
||||||
s.add_dependency 'bundler', '~> 1.0.2'
|
s.add_dependency 'bundler', '~> 1.0.2'
|
||||||
s.add_dependency 'thor', '~> 0.14.3'
|
s.add_dependency 'thor', '~> 0.14.3'
|
||||||
|
@ -19,7 +19,7 @@ module Guard
|
|||||||
|
|
||||||
Dsl.evaluate_guardfile
|
Dsl.evaluate_guardfile
|
||||||
if guards.empty?
|
if guards.empty?
|
||||||
UI.error "No guards found in Guardfile, too bad."
|
UI.error "No guards found in Guardfile, please add it at least one."
|
||||||
else
|
else
|
||||||
Interactor.init_signal_traps
|
Interactor.init_signal_traps
|
||||||
|
|
||||||
|
@ -8,12 +8,12 @@ module Guard
|
|||||||
desc "start", "Starts guard"
|
desc "start", "Starts guard"
|
||||||
method_option :clear, :type => :boolean, :default => false, :aliases => '-c', :banner => "Auto clear shell after each change"
|
method_option :clear, :type => :boolean, :default => false, :aliases => '-c', :banner => "Auto clear shell after each change"
|
||||||
def start
|
def start
|
||||||
Guard.start(options)
|
::Guard.start(options)
|
||||||
end
|
end
|
||||||
|
|
||||||
desc "version", "Prints the guard's version information"
|
desc "version", "Prints the guard's version information"
|
||||||
def version
|
def version
|
||||||
Guard::UI.info "Guard version #{Guard::VERSION}"
|
::Guard::UI.info "Guard version #{Guard::VERSION}"
|
||||||
end
|
end
|
||||||
map %w(-v --version) => :version
|
map %w(-v --version) => :version
|
||||||
|
|
||||||
@ -23,12 +23,12 @@ module Guard
|
|||||||
puts "Writing new Guardfile to #{Dir.pwd}/Guardfile"
|
puts "Writing new Guardfile to #{Dir.pwd}/Guardfile"
|
||||||
FileUtils.cp(File.expand_path('../templates/Guardfile', __FILE__), 'Guardfile')
|
FileUtils.cp(File.expand_path('../templates/Guardfile', __FILE__), 'Guardfile')
|
||||||
elsif guard_name.nil?
|
elsif guard_name.nil?
|
||||||
Guard::UI.error "Guardfile already exists at #{Dir.pwd}/Guardfile"
|
::Guard::UI.error "Guardfile already exists at #{Dir.pwd}/Guardfile"
|
||||||
exit 1
|
exit 1
|
||||||
end
|
end
|
||||||
|
|
||||||
if guard_name
|
if guard_name
|
||||||
guard_class = Guard.get_guard_class(guard_name)
|
guard_class = ::Guard.get_guard_class(guard_name)
|
||||||
guard_class.init(guard_name)
|
guard_class.init(guard_name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
module Guard
|
module Guard
|
||||||
VERSION = "0.1.0.beta.2"
|
VERSION = "0.1.0"
|
||||||
end
|
end
|
Loading…
Reference in New Issue
Block a user