mirror of
https://github.com/Fishwaldo/huginn.git
synced 2025-03-15 19:31:26 +00:00
fix twitter bug
This commit is contained in:
parent
96e74ef02a
commit
67fa336fb9
2 changed files with 4 additions and 1 deletions
2
Gemfile
2
Gemfile
|
@ -31,6 +31,7 @@ gem 'protected_attributes', '~>1.0.8' # This must be loaded before some other ge
|
|||
gem 'ace-rails-ap', '~> 2.0.1'
|
||||
gem 'bootstrap-kaminari-views', '~> 0.0.3'
|
||||
gem 'bundler', '>= 1.5.0'
|
||||
gem 'twitter', '~> 5.8.0' # needs to be loaded before cantino-twitter-stream.
|
||||
gem 'cantino-twitter-stream', github: 'cantino/twitter-stream', branch: 'master'
|
||||
gem 'coffee-rails', '~> 4.0.0'
|
||||
gem 'daemons', '~> 1.1.9'
|
||||
|
@ -64,7 +65,6 @@ gem 'sass-rails', '~> 4.0.0'
|
|||
gem 'select2-rails', '~> 3.5.4'
|
||||
gem 'spectrum-rails'
|
||||
gem 'therubyracer', '~> 0.12.1'
|
||||
gem 'twitter', '~> 5.8.0'
|
||||
gem 'typhoeus', '~> 0.6.3'
|
||||
gem 'uglifier', '>= 1.3.0'
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
require 'thread'
|
||||
require 'huginn_scheduler'
|
||||
|
||||
STDOUT.sync = true
|
||||
STDERR.sync = true
|
||||
|
||||
def stop
|
||||
puts 'Exiting...'
|
||||
@scheduler.stop
|
||||
|
|
Loading…
Add table
Reference in a new issue