Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yazumoto/rails4-2-4-initial-pattern
Initial Pattern of Rails4.2.4. Installed rspec, pry, mysql2 etc.
https://github.com/yazumoto/rails4-2-4-initial-pattern
Last synced: 16 days ago
JSON representation
Initial Pattern of Rails4.2.4. Installed rspec, pry, mysql2 etc.
- Host: GitHub
- URL: https://github.com/yazumoto/rails4-2-4-initial-pattern
- Owner: yazumoto
- License: mit
- Created: 2015-10-23T02:18:09.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T07:25:45.000Z (almost 2 years ago)
- Last Synced: 2024-11-01T13:21:15.866Z (2 months ago)
- Language: Ruby
- Size: 43 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rails4-2-4-initial-pattern
This is initial pattern of Rails4.2.4. Installed rspec, pry, mysql2 etc.## Installed gems
- rspec : This is most important gem you have to install first. Make less bugs.
- factory_girl : DB management tool for spec. You can create test data easily!
- mysql2 : gem for mysql. Currently mysql2 0.4.x has bugs so installed 0.3.20.
- erd : This gem can output your er diagram easily. run 'erd'.
- pry : Debug tool. You can have strongest debug tool now!
- spring : rails, rake, rspec smoothly!
- etc...## Usage
Clone this repository and change remote to your repository. You can also fork this repository if you want.
```
git clone https://github.com/seteen/rails4-2-4-initial-pattern.git
mv rails4-2-4-initial-pattern
cd
git remote set-url origin
bundle install --path vendor/bundle
# setup your db. and modify config/database.yml
```
Now you can start developing!