static_model 0.1.5 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +8 -0
- data/License.txt +1 -1
- data/Manifest.txt +9 -14
- data/{README.txt → README.rdoc} +12 -4
- data/generators/static_model/USAGE +8 -0
- data/generators/static_model/static_model_generator.rb +57 -0
- data/generators/static_model/templates/model.rb.erb +4 -0
- data/generators/static_model/templates/models.yml.erb +6 -0
- data/lib/static_model/base.rb +33 -8
- data/lib/static_model/errors.rb +1 -0
- data/lib/static_model/scope.rb +15 -0
- data/lib/static_model/version.rb +2 -2
- data/lib/static_model.rb +2 -0
- data/test/test_generator_helper.rb +29 -0
- data/test/test_helper.rb +8 -3
- data/test/test_static_model.rb +43 -2
- data/test/test_static_model_generator.rb +48 -0
- metadata +26 -19
- data/Rakefile +0 -4
- data/config/hoe.rb +0 -73
- data/config/requirements.rb +0 -15
- data/setup.rb +0 -1585
- data/test/authors.yml +0 -10
- data/test/books.yml +0 -22
- data/test/publishers.yml +0 -5
data/test/authors.yml
DELETED
data/test/books.yml
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
---
|
2
|
-
- id: 1
|
3
|
-
title: The Omnivore's Dilemma
|
4
|
-
author: Michael Pollan
|
5
|
-
author_id: 1
|
6
|
-
genre: Non-Fiction
|
7
|
-
- id: 2
|
8
|
-
title: In Defense of Food
|
9
|
-
author: Michael Pollan
|
10
|
-
author_id: 1
|
11
|
-
genre: Non-Fiction
|
12
|
-
- id: 3
|
13
|
-
title: Omnivore (Of Man and Manta)
|
14
|
-
author: Piers Anthony
|
15
|
-
author_id: 2
|
16
|
-
genre: Fantasy
|
17
|
-
- id: 4
|
18
|
-
title: Choke
|
19
|
-
author: Chuck Palahniuk
|
20
|
-
author_id: 3
|
21
|
-
genre: Humor
|
22
|
-
|