https://github.com/elcuervo/chest
https://github.com/elcuervo/chest
Last synced: 4 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: 2025-03-26T00:02:08.005Z (4 months ago)
- Language: Ruby
- Size: 109 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chest
Separate your bussiness from your presistance

## 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
```