Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jgaskins/clearwater_todomvc
TodoMVC on Clearwater
https://github.com/jgaskins/clearwater_todomvc
Last synced: 22 days ago
JSON representation
TodoMVC on Clearwater
- Host: GitHub
- URL: https://github.com/jgaskins/clearwater_todomvc
- Owner: jgaskins
- Created: 2015-05-24T00:32:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-29T15:20:34.000Z (over 8 years ago)
- Last Synced: 2024-12-09T10:55:40.480Z (25 days ago)
- Language: Ruby
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clearwater TodoMVC
The [TodoMVC](http://todomvc.com) project has examples of various front-end frameworks implementing a to-do list.
This application uses the [Clearwater](https://github.com/clearwater-rb/clearwater) framework.
## Clearwater
Clearwater is a rich front-end framework for building fast, reasonable, and easily composable browser
applications in Ruby.
It renders to a virtual DOM and applies the virtual DOM to the browser's actual
DOM to update only what has changed on the page.## Running the application
To run the application you need ruby and bundler installed. Any ruby version above 1.9.3 will do.
"gem install bundler" will install bundler if it is not installed yet.- Clone the repository
- cd into the directory`bundle`
`bundle exec rackup`- go to [localhost:9292](http://localhost:9292)
## Extra
If you want to compile assets, make sure you run `rake assets:precompile` or start the app with `COMPILE_ASSETS=true rackup`.