ember-rails 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # ember-rails [![Build Status](https://secure.travis-ci.org/keithpitt/ember-rails.png)](http://travis-ci.org/keithpitt/ember-rails)
2
2
 
3
- ember-rails allows you to include [Ember.JS](http://emberjs.com/) into your Rails 3.1 application.
3
+ ember-rails allows you to include [Ember.JS](http://emberjs.com/) into your Rails 3.x application.
4
4
 
5
5
  The gem will also pre-compile your handlebars templates when building your asset pipeline. It includes development and production copies of Ember.
6
6
 
@@ -17,16 +17,10 @@ Run `bundle install` and add the following line to
17
17
 
18
18
  //= require ember
19
19
 
20
- If you want to include the new date-time helpers provided by ember, you
21
- can use:
22
-
23
- //= require ember-datetime
24
-
25
20
  Ember-rails also provides a way to run Ember in development mode, you
26
21
  can switch out your require statements to use the dev copies like so:
27
22
 
28
23
  //= require ember-dev
29
- //= require ember-datetime-dev
30
24
 
31
25
  Ask Rails to serve HandlebarsJS and pre-compile templates to Ember
32
26
  by putting each template in a dedicated ".js.hjs" or ".handlebars" file
@@ -44,10 +38,6 @@ Now a single line in the layout loads everything:
44
38
 
45
39
  <%= javascript_include_tag "templates/all" %>
46
40
 
47
- ## History
48
-
49
- ember-rails is based on https://github.com/kiskolabs/sproutcore-rails.
50
-
51
41
  ## Note on Patches/Pull Requests
52
42
 
53
43
  1. Fork the project.
@@ -1,3 +1,3 @@
1
1
  module EmberRails
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end