Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crontab_syntax_checker.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion lib/crontab_line.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down