comma_separated_storage 0.0.1 → 0.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/README.md
CHANGED
@@ -7,7 +7,7 @@ require 'comma_separated_storage/version'
|
|
7
7
|
Gem::Specification.new do |gem|
|
8
8
|
gem.name = "comma_separated_storage"
|
9
9
|
gem.version = CommaSeparatedStorage::VERSION
|
10
|
-
gem.authors = ["
|
10
|
+
gem.authors = ["Conan Dalton"]
|
11
11
|
gem.email = ["conan@conandalton.net"]
|
12
12
|
gem.description = %q{Create utility methods to access an attribute as a list but store it as a comma-separated string}
|
13
13
|
gem.summary = %q{Given an object with a string attribute containing a comma-separated list of items,
|
@@ -68,6 +68,12 @@ describe CommaSeparatedStorage do
|
|
68
68
|
widget.languages = ""
|
69
69
|
widget.language_list.should == []
|
70
70
|
end
|
71
|
+
|
72
|
+
it "should convert a non-array argument to an array of length 1" do
|
73
|
+
widget.language_list = "ru"
|
74
|
+
widget.languages.should == "ru"
|
75
|
+
widget.language_list.should == ["ru"]
|
76
|
+
end
|
71
77
|
end
|
72
78
|
|
73
79
|
describe "each_lang" do
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: comma_separated_storage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
|
-
-
|
8
|
+
- Conan Dalton
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-04-
|
12
|
+
date: 2013-04-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|