diff --git a/Gemfile.lock b/Gemfile.lock index 9ef555b..69a64fa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - crono (0.5.2) + crono (0.6.0) activejob (~> 4.0) activerecord (~> 4.0) activesupport (~> 4.0) diff --git a/README.md b/README.md index 3eaf3bf..67ebf38 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Crono is a time-based background job scheduler daemon (just like Cron) for Ruby ## The Idea -Currently there is no such thing as Cron in Ruby for Rails. Well, there's [Whenever](https://github.com/javan/whenever) but it works on top of Unix Cron, so you have no total control of it from Ruby. Crono is pure Ruby. It doesn't use Unix Cron and other platform-dependent things. So you can use it on all platforms supported by Ruby. It persists job state to your database using Active Record. You have total control of jobs performing process. You have the Ruby code, so you can understand and modify it to fit your needs. +Currently there is no such thing as Cron in Ruby for Rails. Well, there's [Whenever](https://github.com/javan/whenever) but it works on top of Unix Cron, so you have no total control of it from Ruby. Crono is pure Ruby. It doesn't use Unix Cron and other platform-dependent things. So you can use it on all platforms supported by Ruby. It persists job state to your database using Active Record. You have full control of jobs performing process. You have Ruby code, so you can understand and modify it to fit your needs. ## Requirements diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index e331f34..4e70838 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -7,7 +7,7 @@ require 'generators/crono/install/templates/migrations/create_crono_jobs.rb' ActiveRecord::Base.establish_connection(adapter: 'sqlite3', database: ':memory:') ActiveRecord::Base.logger = Logger.new(STDOUT) -CreateActiveAdminComments.up +CreateCronoJobs.up RSpec.configure do |config| end