Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elcuervo/chest
https://github.com/elcuervo/chest
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/elcuervo/chest
- Owner: elcuervo
- Created: 2012-10-24T23:01:08.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-25T14:37:40.000Z (over 12 years ago)
- Last Synced: 2024-11-28T23:28:13.457Z (about 2 months ago)
- Language: Ruby
- Size: 109 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chest
Separate your bussiness from your presistance
![Chest](http://www.em4miniatures.com/acatalog/TChestfrontweb.jpg)
## Installation
```bash
gem install chest
```## Tutorial
```ruby
class User
include Chest::Modelattr_accessor :id, :name, :email
endclass UserRepository
include Chest::Repositorycollection User
attributes :name
enduser = User.new(
name: "John",
email: "[email protected]"
)UserRepository.save(user)
user.id
#=> 1
```