preferences 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: preferences
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Aaron Pfeifer
8
+ autorequire: preferences
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-05-10 00:00:00 -04:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: aaron@pluginaweek.org
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - app/models
26
+ - app/models/preference.rb
27
+ - lib/preferences
28
+ - lib/preferences/preference_definition.rb
29
+ - lib/preferences.rb
30
+ - test/factory.rb
31
+ - test/app_root
32
+ - test/app_root/log
33
+ - test/app_root/log/in_memory.log
34
+ - test/app_root/db
35
+ - test/app_root/db/migrate
36
+ - test/app_root/db/migrate/003_migrate_preferences_to_version_1.rb
37
+ - test/app_root/db/migrate/002_create_cars.rb
38
+ - test/app_root/db/migrate/001_create_users.rb
39
+ - test/app_root/config
40
+ - test/app_root/config/environment.rb
41
+ - test/app_root/app
42
+ - test/app_root/app/models
43
+ - test/app_root/app/models/user.rb
44
+ - test/app_root/app/models/car.rb
45
+ - test/functional
46
+ - test/functional/preferences_test.rb
47
+ - test/test_helper.rb
48
+ - test/unit
49
+ - test/unit/preference_test.rb
50
+ - test/unit/preference_definition_test.rb
51
+ - CHANGELOG
52
+ - init.rb
53
+ - MIT-LICENSE
54
+ - Rakefile
55
+ - README
56
+ has_rdoc: true
57
+ homepage: http://www.pluginaweek.org
58
+ post_install_message:
59
+ rdoc_options: []
60
+
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: "0"
68
+ version:
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: "0"
74
+ version:
75
+ requirements: []
76
+
77
+ rubyforge_project:
78
+ rubygems_version: 1.1.0
79
+ signing_key:
80
+ specification_version: 2
81
+ summary: Adds support for easily creating custom preferences for models
82
+ test_files:
83
+ - test/functional/preferences_test.rb
84
+ - test/unit/preference_test.rb
85
+ - test/unit/preference_definition_test.rb