diff --git a/crontab_syntax_checker.gemspec b/crontab_syntax_checker.gemspec index d8744e4..4ebd088 100644 --- a/crontab_syntax_checker.gemspec +++ b/crontab_syntax_checker.gemspec @@ -4,4 +4,5 @@ spec = Gem::Specification.new do |s| s.summary = 'Validate an entry that will be used in crontab' s.require_paths = ["lib"] s.files = Dir.glob("**/*") + s.authors = ['Stephen Sloan'] end \ No newline at end of file diff --git a/lib/crontab_line.rb b/lib/crontab_line.rb index f8783c6..1ac4a62 100644 --- a/lib/crontab_line.rb +++ b/lib/crontab_line.rb @@ -53,7 +53,7 @@ def self.create_by_entry(entry) crontab.command = md[@@COMMAND_GROUP_NUM] crontab else - raise "Entry did match expected pattern" + raise "Entry did not match expected pattern" end end def to_s