flex_fields 1.0.0 → 1.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.
- data/flex_fields.gemspec +3 -3
- data/lib/flex_fields/version.rb +1 -1
- metadata +5 -4
data/flex_fields.gemspec
CHANGED
|
@@ -8,9 +8,9 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = [ 'Kyle Crum' ]
|
|
10
10
|
s.email = [ 'kyle.e.crum@gmail.com' ]
|
|
11
|
-
s.homepage = '
|
|
12
|
-
s.summary = '
|
|
13
|
-
s.description = '
|
|
11
|
+
s.homepage = 'https://github.com/kylecodes/flex_fields'
|
|
12
|
+
s.summary = 'Store an arbitrary amount of data in a serialized column'
|
|
13
|
+
s.description = 'Easily and flexibly define an arbitrary amount of data to be stored in a serialized column'
|
|
14
14
|
|
|
15
15
|
s.files = `git ls-files`.split("\n")
|
|
16
16
|
s.test_files = `git ls-files -- {test,spec}/*`.split("\n")
|
data/lib/flex_fields/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flex_fields
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -33,7 +33,8 @@ dependencies:
|
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: *3744360
|
|
36
|
-
description:
|
|
36
|
+
description: Easily and flexibly define an arbitrary amount of data to be stored in a
|
|
37
|
+
serialized column
|
|
37
38
|
email:
|
|
38
39
|
- kyle.e.crum@gmail.com
|
|
39
40
|
executables: []
|
|
@@ -60,7 +61,7 @@ files:
|
|
|
60
61
|
- lib/flex_fields/version.rb
|
|
61
62
|
- spec/flex_attributes_spec.rb
|
|
62
63
|
- spec/spec_helper.rb
|
|
63
|
-
homepage:
|
|
64
|
+
homepage: https://github.com/kylecodes/flex_fields
|
|
64
65
|
licenses: []
|
|
65
66
|
post_install_message:
|
|
66
67
|
rdoc_options: []
|
|
@@ -83,7 +84,7 @@ rubyforge_project:
|
|
|
83
84
|
rubygems_version: 1.8.14
|
|
84
85
|
signing_key:
|
|
85
86
|
specification_version: 3
|
|
86
|
-
summary:
|
|
87
|
+
summary: Store an arbitrary amount of data in a serialized column
|
|
87
88
|
test_files:
|
|
88
89
|
- spec/flex_attributes_spec.rb
|
|
89
90
|
- spec/spec_helper.rb
|