From 1ed069871fcb8567e61b4953aa6a574274e16f74 Mon Sep 17 00:00:00 2001 From: Andrew Cantino Date: Tue, 12 Mar 2013 22:20:58 -0700 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 270dae349d..f0e55d85a9 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Huginn is a system for building agents that perform automated tasks for you onli #### This is just getting started, but here are some of the things that you can do right now with Huginn: * Watch for air travel deals -* List terms you care about and receive emails when their occurrence on Twitter changes drastically +* List terms you care about and receive emails when their occurrence on Twitter changes drastically. (For example, want to know when something interesting has happened in the world of Machine Learning? Huginn will watch the term "machine learning" on Twitter and tell you when there is a large spike.) * Track the weather and get an email when it's going to rain (or snow) tomorrow * Follow your project names on Twitter and get updates when people mention them * Scrape websites and receive emails when they change From c7685b47067126168b348b4a492d86418ea462be Mon Sep 17 00:00:00 2001 From: Andrew Cantino Date: Wed, 13 Mar 2013 19:34:56 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f0e55d85a9..b6376e7e65 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ Huginn is a system for building agents that perform automated tasks for you onli * Scrape websites and receive emails when they change * Track your location over time +Follow [@tectonic](https://twitter.com/tectonic) for updates as Huginn evolves. + ## Examples And now, some example screenshots. Below them are instructions to get you started. From b21561cc64728d46f3b974c15142b806cac9d931 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkins Date: Thu, 14 Mar 2013 17:42:00 -0700 Subject: [PATCH 3/3] correct path for secret_token.rb --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6376e7e65..393b36309b 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ And now, some example screenshots. Below them are instructions to get you start If you just want to play around, you can simply clone this repository, then perform the following steps: -* Edit `config/secret_token.rb` and replace `REPLACE_ME_NOW!` with the output of `rake secret`. +* Edit `config/initializers/secret_token.rb` and replace `REPLACE_ME_NOW!` with the output of `rake secret`. * Run `rake db:create`, `rake db:migrate`, and then `rake db:seed` to create a development MySQL database with some example seed data. Run `rails s`, visit `http://localhost:3000`, and login with the username of `admin` and the password of `password`. * Make some extra Terminal windows and run `bundle exec rails runner bin/schedule.rb`, `bundle exec rails runner bin/twitter_stream.rb`, and `script/delayed_job run` in separate windows. * Setup some Agents!