Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonytonyjan/penta_ruby
It was the major repo of 5xruby.tw.
https://github.com/tonytonyjan/penta_ruby
Last synced: about 2 months ago
JSON representation
It was the major repo of 5xruby.tw.
- Host: GitHub
- URL: https://github.com/tonytonyjan/penta_ruby
- Owner: tonytonyjan
- Created: 2014-12-14T05:01:07.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-14T05:02:39.000Z (about 10 years ago)
- Last Synced: 2024-04-09T21:30:13.913Z (9 months ago)
- Language: JavaScript
- Size: 25.9 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Development Guide
=================Software Dependencies (OS X)
----------------------------```bash
$ brew install postgres redis imagemagick pkg-config
```Setup
-----```
$ bundle install
$ cp config/application.yml.example config/application.yml
$ cp config/database.yml.example config/database.yml
$ rake db:setup dev:fake
$ rails server
```Tasks
-----* `rake dev:fake[model_name,count]`
dev:fake to generate fake data for all model, dev:fake[course,3] to create 3 fake courses (available parameters: author, post, speaker, category, course, faq)
Coding Rules
============Generate Admin Pages for Models
-------------------------------For example, to generate admin pages for `Post` model:
```bash
$ rails generate model post title content:text
$ rails generate scaffold admin/post title content:text --migration=false --parent=post
```Schema Updating
---------------1. Generate migraion file
2. Update facotry
3. Update `_form.html.erb`, `show.html.erb` and `index.html.erb` in admin pages.# `db/schema.rb` MUST BE CONSISTENT in every environment, both servers and clients. Having differnt schema betweent environments is totally not forgivable.
Assets
------Assets are managed by [gistyle](https://github.com/tonytonyjan/gistyle) framework (DOM-based routing of Javascript), please follow the convension to keep your code clean. Do not mess them up with view files as much as possible.
Principle of Least Gems
-----------------------Do not easily install gems unless you are familiar with them, generally, functions can be almost accomplished by Rails it self, so think twice before doing.
If you don't like the rules above, you are welcome to challenge [@tonytonyjan](https://github.com/tonytonyjan).
Internationalization for Database Content
----------------------------------------You can define which models and columns to be translated in `Translation::AVAILABLE_MODELS`, for example:
```ruby
# app/models/translations
class Translation < ActiveRecord::Base
AVAILABLE_MODELS = {
Speaker => [:name, :summary],
Video => [:title, :summary, description: :redactor],
}
end
```The last element of array can be a Hahs object, keys are column names and values are form field types which correspond to columns, available valies are `string` (as text field), `text` (as text area) and `redactor` (as WYSIWYG editor).
Contact
=======