README.md in elasticity-2.5.1 vs README.md in elasticity-2.5.2
- old
+ new
@@ -1,7 +1,5 @@
-(2012-11-23) Hey all, I'm still out here. Elasticity remains part of our daily workflow at [Sharethrough](http://www.sharethrough.com/) and after a year of work, our usage patterns have stabilized. Submit an issue if you have suggestions!
-
Elasticity provides programmatic access to Amazon's Elastic Map Reduce service. The aim is to conveniently abstract away the complex EMR REST API and make working with job flows more productive and more enjoyable.
[![Build Status](https://secure.travis-ci.org/rslifka/elasticity.png)](http://travis-ci.org/rslifka/elasticity) REE, 1.8.7, 1.9.2, 1.9.3
Elasticity provides two ways to access EMR:
@@ -319,9 +317,22 @@
If that's the case, or if you'd just like to terminate a running jobflow before waiting for it to finish:
```ruby
jobflow.shutdown
+```
+
+# Elasticity Configuration
+
+Elasticity supports a wide range of configuration options :) all of which are shown below.
+
+```ruby
+Elasticity.configure do |config|
+
+ # If using Hive, it will be configured via the directives here
+ config.hive_site = 's3://bucket/hive-site.xml'
+
+end
```
# Amazon EMR Documentation
Elasticity wraps all of the EMR API calls. Please see the Amazon guide for details on these operations because the default values aren't obvious (e.g. the meaning of <code>DescribeJobFlows</code> without parameters).