https://github.com/gnuwilliam/rails-ember-example
Simple Rails app built with Ember.js
https://github.com/gnuwilliam/rails-ember-example
Last synced: 11 months ago
JSON representation
Simple Rails app built with Ember.js
- Host: GitHub
- URL: https://github.com/gnuwilliam/rails-ember-example
- Owner: gnuwilliam
- Created: 2013-12-28T03:10:36.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-02T21:25:27.000Z (over 12 years ago)
- Last Synced: 2025-07-22T08:53:53.672Z (11 months ago)
- Language: Ruby
- Size: 785 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rails + Ember - App Example
This is a simple application to show how Rails and Ember works well together.
If you're creating an app from scratch, using Rails 4+, here's the guide to integrate with Ember.js:
Create your app using Ember.js template
```
rails new your_app -m http://emberjs.com/edge_tempplate.rb
```
Then bootstrap your Ember.js app
```
rails g ember:bootstrap
```
Aaaand
```
rails g ember:install
```
There you go! Now you run the Rails server, and you should see a beautiful Ember.js screen.
```
rails s
```

[Demo](http://randomaccessmemories.herokuapp.com/#/stories/)