bump to 1.1.2

This commit is contained in:
Rob Watson 2010-11-10 15:47:33 +00:00
parent f7d1dd01da
commit ad4f92c93a
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ begin
when 'status'
puts Noprocast.status_message
when 'edit'
if Process.uid != File.stat(Noprocast.deny_file_path).uid
if File.exists?(Noprocast.deny_file_path) && (Process.uid != File.stat(Noprocast.deny_file_path).uid)
puts "Can't edit this file as it belongs to another user (hint: don't use sudo)"
exit
end

View File

@ -5,7 +5,7 @@
Gem::Specification.new do |s|
s.name = %q{noprocast}
s.version = "0.1.0"
s.version = "0.1.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Rob Watson"]