simple_eav 1.0.1 → 1.0.2
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.
- data/Rakefile +7 -0
- data/lib/version.rb +1 -1
- data/simple_eav.gemspec +4 -4
- metadata +4 -4
data/Rakefile
CHANGED
data/lib/version.rb
CHANGED
data/simple_eav.gemspec
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
2
|
$:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
require "version"
|
|
4
4
|
|
|
@@ -11,9 +11,9 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
s.summary = %q{A simple alternative to acts_as_eav_model.}
|
|
12
12
|
s.description = %q{A simple alternative to acts_as_eav_model that works with ActiveRecord without any monkey patching needed. Acts_as_eav_model's gives a model the ability to have any number of custom attributes. This project has the same goal. The difference being maintaining utmost compatability with ActiveRecord::Base.}
|
|
13
13
|
|
|
14
|
-
s.files =
|
|
15
|
-
s.test_files =
|
|
16
|
-
s.executables =
|
|
14
|
+
s.files = [".gitignore", ".rvmrc", ".travis.yml", "Gemfile", "LICENSE", "README.rdoc", "Rakefile", "lib/simple_eav.rb", "lib/version.rb", "simple_eav.gemspec", "spec/db/schema.rb", "spec/lib/simple_eav_spec.rb", "spec/spec_helper.rb", "spec/support/child.rb", "spec/support/person.rb"]
|
|
15
|
+
s.test_files = ["spec/db/schema.rb", "spec/lib/simple_eav_spec.rb", "spec/spec_helper.rb", "spec/support/child.rb", "spec/support/person.rb"]
|
|
16
|
+
s.executables = []
|
|
17
17
|
s.extra_rdoc_files = [ "README.rdoc" ]
|
|
18
18
|
s.require_path = "lib"
|
|
19
19
|
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: simple_eav
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.0.
|
|
5
|
+
version: 1.0.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Tim Linquist
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date:
|
|
13
|
+
date: 2012-01-08 00:00:00 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activerecord
|
|
@@ -105,7 +105,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
105
105
|
requirements:
|
|
106
106
|
- - ">="
|
|
107
107
|
- !ruby/object:Gem::Version
|
|
108
|
-
hash:
|
|
108
|
+
hash: 689199894580295255
|
|
109
109
|
segments:
|
|
110
110
|
- 0
|
|
111
111
|
version: "0"
|
|
@@ -114,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
114
114
|
requirements:
|
|
115
115
|
- - ">="
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
|
-
hash:
|
|
117
|
+
hash: 689199894580295255
|
|
118
118
|
segments:
|
|
119
119
|
- 0
|
|
120
120
|
version: "0"
|