bump to 1.1.2
This commit is contained in:
parent
f7d1dd01da
commit
ad4f92c93a
|
@ -11,7 +11,7 @@ begin
|
||||||
when 'status'
|
when 'status'
|
||||||
puts Noprocast.status_message
|
puts Noprocast.status_message
|
||||||
when 'edit'
|
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)"
|
puts "Can't edit this file as it belongs to another user (hint: don't use sudo)"
|
||||||
exit
|
exit
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = %q{noprocast}
|
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.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||||
s.authors = ["Rob Watson"]
|
s.authors = ["Rob Watson"]
|
||||||
|
|
Loading…
Reference in New Issue