sequel-pg_array 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +61 -0
- data/Rakefile +1 -0
- data/lib/sequel-pg_array.rb +1 -0
- data/lib/sequel/plugins/pg_array.rb +24 -0
- data/lib/sequel/plugins/pg_array/version.rb +7 -0
- data/sequel-pg_array.gemspec +19 -0
- metadata +55 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Jesse Stuart
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
# Sequel::Plugins::PGArray
|
2
|
+
|
3
|
+
Sequel ORM Plugin for serializing columns as Postges Arrays build atop `Sequel::Plugins::Serialization`.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'sequel-pg_array'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install sequel-pg_array
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
require 'sequel-pg_array'
|
23
|
+
|
24
|
+
DB = Sequel.connect(ENV['DATABASE_URL'])
|
25
|
+
|
26
|
+
class Person < Sequel::Model(:people)
|
27
|
+
plugin :serialization
|
28
|
+
serialize_attributes :pg_array, :interests, :colors
|
29
|
+
end
|
30
|
+
|
31
|
+
unless DB.table_exists?(:people)
|
32
|
+
DB.create_table :people do
|
33
|
+
primary_key :id
|
34
|
+
column :interests, "text[]", :default=>"{}"
|
35
|
+
column :colors, "text[]", :default=>"{}"
|
36
|
+
end
|
37
|
+
Person.columns # load columns
|
38
|
+
end
|
39
|
+
|
40
|
+
|
41
|
+
person = Person.create(
|
42
|
+
:interests => %w( space travel deep sea diving ),
|
43
|
+
:colors => %w( red white )
|
44
|
+
)
|
45
|
+
person.interests # => ['space travel', 'deep sea diving']
|
46
|
+
person.colors # => ['red', 'white']
|
47
|
+
person.colors << 'blue'
|
48
|
+
person.id # => 1
|
49
|
+
person.save
|
50
|
+
|
51
|
+
person = Person.first(:id => 1)
|
52
|
+
person.colors # => ['red', 'white', 'blue']
|
53
|
+
```
|
54
|
+
|
55
|
+
## Contributing
|
56
|
+
|
57
|
+
1. Fork it
|
58
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
59
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
60
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
61
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1 @@
|
|
1
|
+
require "sequel/plugins/pg_array"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require "sequel/plugins/pg_array/version"
|
2
|
+
require 'sequel/plugins/serialization'
|
3
|
+
|
4
|
+
module Sequel
|
5
|
+
module Plugins
|
6
|
+
module PGArray
|
7
|
+
module Serialize
|
8
|
+
def self.call(value)
|
9
|
+
return if value.nil?
|
10
|
+
"{#{value.map(&:to_s).map(&:inspect).join(',')}}"
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
module Deserialize
|
15
|
+
def self.call(value)
|
16
|
+
return if value.nil?
|
17
|
+
value[1..-2].split(',').map { |v| v[0,1] == '"' ? v[1..-2] : v }
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
Serialization.register_format(:pg_array, PGArray::Serialize, PGArray::Deserialize)
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'sequel/plugins/pg_array/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "sequel-pg_array"
|
8
|
+
gem.version = Sequel::Plugins::PGArray::VERSION
|
9
|
+
gem.authors = ["Jesse Stuart"]
|
10
|
+
gem.email = ["jesse@jessestuart.ca"]
|
11
|
+
gem.description = %q{Sequel ORM Plugin for serializing columns as Postges Arrays build atop Sequel::Plugins::Serialization}
|
12
|
+
gem.summary = %q{Sequel ORM Plugin for serializing columns as Postges Arrays}
|
13
|
+
gem.homepage = "https://github.com/tent/sequel-pg_array"
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
end
|
metadata
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sequel-pg_array
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jesse Stuart
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-03-18 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: Sequel ORM Plugin for serializing columns as Postges Arrays build atop
|
15
|
+
Sequel::Plugins::Serialization
|
16
|
+
email:
|
17
|
+
- jesse@jessestuart.ca
|
18
|
+
executables: []
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- .gitignore
|
23
|
+
- Gemfile
|
24
|
+
- LICENSE.txt
|
25
|
+
- README.md
|
26
|
+
- Rakefile
|
27
|
+
- lib/sequel-pg_array.rb
|
28
|
+
- lib/sequel/plugins/pg_array.rb
|
29
|
+
- lib/sequel/plugins/pg_array/version.rb
|
30
|
+
- sequel-pg_array.gemspec
|
31
|
+
homepage: https://github.com/tent/sequel-pg_array
|
32
|
+
licenses: []
|
33
|
+
post_install_message:
|
34
|
+
rdoc_options: []
|
35
|
+
require_paths:
|
36
|
+
- lib
|
37
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
39
|
+
requirements:
|
40
|
+
- - ! '>='
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
|
+
none: false
|
45
|
+
requirements:
|
46
|
+
- - ! '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
requirements: []
|
50
|
+
rubyforge_project:
|
51
|
+
rubygems_version: 1.8.23
|
52
|
+
signing_key:
|
53
|
+
specification_version: 3
|
54
|
+
summary: Sequel ORM Plugin for serializing columns as Postges Arrays
|
55
|
+
test_files: []
|