Lint the whole project

This commit is contained in:
Dzmitry Plashchynski
2015-03-13 20:32:27 +02:00
parent 1aa27baca8
commit a9798acb35
23 changed files with 203 additions and 172 deletions

View File

@@ -1,4 +1,4 @@
# cronotab.rb Crono configuration file
# cronotab.rb - Crono configuration file
#
# Here you can specify periodic jobs and schedule.
# You can use ActiveJob's jobs from `app/jobs/`
@@ -7,9 +7,8 @@
#
class TestJob
def perform
puts "Test!"
puts 'Test!'
end
end
Crono.perform(TestJob).every 2.days, at: "15:30"
Crono.perform(TestJob).every 2.days, at: '15:30'