Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alindeman/rake-rails
Reduces the confusion for newcomers by allowing `rails` commands to be run via `rake`
https://github.com/alindeman/rake-rails
Last synced: 2 months ago
JSON representation
Reduces the confusion for newcomers by allowing `rails` commands to be run via `rake`
- Host: GitHub
- URL: https://github.com/alindeman/rake-rails
- Owner: alindeman
- License: mit
- Created: 2012-05-23T16:05:06.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-23T16:10:04.000Z (over 12 years ago)
- Last Synced: 2024-10-13T17:51:37.243Z (2 months ago)
- Language: Ruby
- Size: 97.7 KB
- Stars: 15
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rake-rails
Reduces the confusion for newcomers by allowing `rails` commands to be run via
`rake`. Inspiration from [@j3](http://twitter.com/j3)'s presentation
[Adventures on the Golden Path](https://speakerdeck.com/u/j3/p/adventures-on-the-golden-path).## Usage
Add to your Gemfile:
```ruby
gem 'rake-rails'
```Install via:
```
$ bundle install
```Use right away!
```
$ rake generate model Post title:string
$ rake console
$ rake server
```