aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2014-05-19 12:36:17 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2014-05-19 12:36:17 +0200
commit079ff1f15c056b6a16ae143b3a49f060ee9ed60d (patch)
tree8166472756ea69c2f05139d108993b2601656a54
parent37b13cdd1f59d17d6c44e3ff301c738cd13b4511 (diff)
parentc14cc48ed741a8d96f2aeff58da8f92eeaceabd4 (diff)
downloadrails-079ff1f15c056b6a16ae143b3a49f060ee9ed60d.tar.gz
rails-079ff1f15c056b6a16ae143b3a49f060ee9ed60d.tar.bz2
rails-079ff1f15c056b6a16ae143b3a49f060ee9ed60d.zip
Merge branch 'master' of github.com:rails/activejob
-rw-r--r--README.md21
1 files changed, 5 insertions, 16 deletions
diff --git a/README.md b/README.md
index 84d40809f7..53cd1e86b6 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-= Active Job -- Make work happen later
+# Active Job -- Make work happen later
Active Job is a framework for declaring jobs and making them run on a variety
of queueing backends. These jobs can be everything from regularly scheduled
@@ -11,7 +11,7 @@ one of the most common jobs in a modern web application: Sending emails outside
of the request-response cycle, so the user doesn't have to wait on it.
-== GlobalID support
+## GlobalID support
Active Job supports GlobalID serialization for parameters. This makes it possible
to pass live Active Record objects to your job instead of class/id pairs, which
@@ -40,7 +40,7 @@ This works with any class that mixes in ActiveModel::GlobalIdentification, which
by default has been mixed into Active Record classes.
-== Supported queueing systems
+## Supported queueing systems
We currently have adapters for:
@@ -55,7 +55,7 @@ We would like to have adapters for:
* rabbitmq
-== Under development as a gem, targeted for Rails inclusion
+## Under development as a gem, targeted for Rails inclusion
Active Job is currently being developed in a separate repository until it's
ready to be merged in with Rails. The current plan is to have Active Job
@@ -63,18 +63,7 @@ be part of the Rails 4.2 release, but plans may change depending on when
this framework stabilizes and feels ready.
-== Download and installation
-
-The latest version of Active Job can be installed with RubyGems:
-
- % [sudo] gem install activejob
-
-Source code can be downloaded as part of the Rails project on GitHub
-
-* https://github.com/rails/activejob
-
-
-== License
+## License
Active Job is released under the MIT license: