acts_as_eav_model 0.0.0 → 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.
Files changed (3) hide show
  1. data/VERSION +1 -1
  2. data/acts_as_eav_model.gemspec +156 -0
  3. metadata +4 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.0
1
+ 0.0.1
@@ -0,0 +1,156 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{acts_as_eav_model}
8
+ s.version = "0.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Marcus Wyatt"]
12
+ s.date = %q{2010-11-14}
13
+ s.description = %q{Entity-attribute-value model (EAV) is a data model that is used in circumstances
14
+ where the number of attributes (properties, parameters) that can be used to describe
15
+ a thing (an "entity" or "object") is potentially very vast, but the number that will
16
+ actually apply to a given entity is relatively modest.}
17
+ s.email = %q{}
18
+ s.extra_rdoc_files = [
19
+ "README.rdoc",
20
+ "TODO"
21
+ ]
22
+ s.files = [
23
+ ".rvmrc",
24
+ "CHANGELOG",
25
+ "Gemfile",
26
+ "Gemfile.lock",
27
+ "MIT-LICENSE",
28
+ "README.rdoc",
29
+ "Rakefile",
30
+ "SPECDOC",
31
+ "TODO",
32
+ "VERSION",
33
+ "acts_as_eav_model.gemspec",
34
+ "doc/classes/ActiveRecord/Acts/EavModel.html",
35
+ "doc/classes/ActiveRecord/Acts/EavModel/ClassMethods.html",
36
+ "doc/classes/ActiveRecord/Acts/EavModel/InstanceMethods.html",
37
+ "doc/classes/ActiveRecord/Acts/EavModel/InstanceMethods/ClassMethods.html",
38
+ "doc/classes/ActiveRecord/Base.html",
39
+ "doc/created.rid",
40
+ "doc/files/CHANGELOG.html",
41
+ "doc/files/MIT-LICENSE.html",
42
+ "doc/files/README_rdoc.html",
43
+ "doc/files/SPECDOC.html",
44
+ "doc/files/lib/acts_as_eav_model_rb.html",
45
+ "doc/fr_class_index.html",
46
+ "doc/fr_file_index.html",
47
+ "doc/fr_method_index.html",
48
+ "doc/index.html",
49
+ "doc/rdoc-style.css",
50
+ "init.rb",
51
+ "install.rb",
52
+ "lib/acts_as_eav_model.rb",
53
+ "spec/dummy/Rakefile",
54
+ "spec/dummy/app/controllers/application_controller.rb",
55
+ "spec/dummy/app/helpers/application_helper.rb",
56
+ "spec/dummy/app/models/document.rb",
57
+ "spec/dummy/app/models/person.rb",
58
+ "spec/dummy/app/models/person_contact_info.rb",
59
+ "spec/dummy/app/models/post.rb",
60
+ "spec/dummy/app/models/post_attribute.rb",
61
+ "spec/dummy/app/models/preference.rb",
62
+ "spec/dummy/app/views/layouts/application.html.erb",
63
+ "spec/dummy/config.ru",
64
+ "spec/dummy/config/application.rb",
65
+ "spec/dummy/config/boot.rb",
66
+ "spec/dummy/config/database.yml",
67
+ "spec/dummy/config/environment.rb",
68
+ "spec/dummy/config/environments/development.rb",
69
+ "spec/dummy/config/environments/production.rb",
70
+ "spec/dummy/config/environments/test.rb",
71
+ "spec/dummy/config/initializers/backtrace_silencers.rb",
72
+ "spec/dummy/config/initializers/inflections.rb",
73
+ "spec/dummy/config/initializers/mime_types.rb",
74
+ "spec/dummy/config/initializers/secret_token.rb",
75
+ "spec/dummy/config/initializers/session_store.rb",
76
+ "spec/dummy/config/locales/en.yml",
77
+ "spec/dummy/config/routes.rb",
78
+ "spec/dummy/db/development.sqlite3",
79
+ "spec/dummy/db/schema.rb",
80
+ "spec/dummy/public/404.html",
81
+ "spec/dummy/public/422.html",
82
+ "spec/dummy/public/500.html",
83
+ "spec/dummy/public/favicon.ico",
84
+ "spec/dummy/public/javascripts/application.js",
85
+ "spec/dummy/public/javascripts/controls.js",
86
+ "spec/dummy/public/javascripts/dragdrop.js",
87
+ "spec/dummy/public/javascripts/effects.js",
88
+ "spec/dummy/public/javascripts/prototype.js",
89
+ "spec/dummy/public/javascripts/rails.js",
90
+ "spec/dummy/public/stylesheets/.gitkeep",
91
+ "spec/dummy/script/rails",
92
+ "spec/fixtures/people.yml",
93
+ "spec/fixtures/person_contact_infos.yml",
94
+ "spec/fixtures/post_attributes.yml",
95
+ "spec/fixtures/posts.yml",
96
+ "spec/fixtures/preferences.yml",
97
+ "spec/models/eav_model_with_no_arguments_spec.rb",
98
+ "spec/models/eav_model_with_options_spec.rb",
99
+ "spec/models/eav_validation_spec.rb",
100
+ "spec/schema.rb",
101
+ "spec/spec_helper.rb",
102
+ "uninstall.rb"
103
+ ]
104
+ s.homepage = %q{http://github.com/g5search/acts_as_eav_model}
105
+ s.require_paths = ["lib"]
106
+ s.rubygems_version = %q{1.3.7}
107
+ s.summary = %q{Entity Attribute Value Implementation for inclusion in ActiveRecord models.}
108
+ s.test_files = [
109
+ "spec/dummy/app/controllers/application_controller.rb",
110
+ "spec/dummy/app/helpers/application_helper.rb",
111
+ "spec/dummy/app/models/document.rb",
112
+ "spec/dummy/app/models/person.rb",
113
+ "spec/dummy/app/models/person_contact_info.rb",
114
+ "spec/dummy/app/models/post.rb",
115
+ "spec/dummy/app/models/post_attribute.rb",
116
+ "spec/dummy/app/models/preference.rb",
117
+ "spec/dummy/config/application.rb",
118
+ "spec/dummy/config/boot.rb",
119
+ "spec/dummy/config/environment.rb",
120
+ "spec/dummy/config/environments/development.rb",
121
+ "spec/dummy/config/environments/production.rb",
122
+ "spec/dummy/config/environments/test.rb",
123
+ "spec/dummy/config/initializers/backtrace_silencers.rb",
124
+ "spec/dummy/config/initializers/inflections.rb",
125
+ "spec/dummy/config/initializers/mime_types.rb",
126
+ "spec/dummy/config/initializers/secret_token.rb",
127
+ "spec/dummy/config/initializers/session_store.rb",
128
+ "spec/dummy/config/routes.rb",
129
+ "spec/dummy/db/schema.rb",
130
+ "spec/models/eav_model_with_no_arguments_spec.rb",
131
+ "spec/models/eav_model_with_options_spec.rb",
132
+ "spec/models/eav_validation_spec.rb",
133
+ "spec/schema.rb",
134
+ "spec/spec_helper.rb"
135
+ ]
136
+
137
+ if s.respond_to? :specification_version then
138
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
139
+ s.specification_version = 3
140
+
141
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
142
+ s.add_runtime_dependency(%q<rails>, ["= 3.0.1"])
143
+ s.add_runtime_dependency(%q<sqlite3-ruby>, [">= 0"])
144
+ s.add_runtime_dependency(%q<jeweler>, [">= 0"])
145
+ else
146
+ s.add_dependency(%q<rails>, ["= 3.0.1"])
147
+ s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
148
+ s.add_dependency(%q<jeweler>, [">= 0"])
149
+ end
150
+ else
151
+ s.add_dependency(%q<rails>, ["= 3.0.1"])
152
+ s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
153
+ s.add_dependency(%q<jeweler>, [">= 0"])
154
+ end
155
+ end
156
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 0
9
- version: 0.0.0
8
+ - 1
9
+ version: 0.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Marcus Wyatt
@@ -82,6 +82,7 @@ files:
82
82
  - SPECDOC
83
83
  - TODO
84
84
  - VERSION
85
+ - acts_as_eav_model.gemspec
85
86
  - doc/classes/ActiveRecord/Acts/EavModel.html
86
87
  - doc/classes/ActiveRecord/Acts/EavModel/ClassMethods.html
87
88
  - doc/classes/ActiveRecord/Acts/EavModel/InstanceMethods.html
@@ -165,7 +166,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
165
166
  requirements:
166
167
  - - ">="
167
168
  - !ruby/object:Gem::Version
168
- hash: 400579503223505123
169
+ hash: 619066834211978823
169
170
  segments:
170
171
  - 0
171
172
  version: "0"