structpluck 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +33 -0
- data/Rakefile +1 -0
- data/lib/structpluck.rb +17 -0
- data/lib/structpluck/version.rb +3 -0
- data/structpluck.gemspec +27 -0
- data/test/structpluck_test.rb +29 -0
- data/test/support/test_class.rb +26 -0
- metadata +127 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 699e7b727eb960a0abac1b051933ee15ccdf4e70
|
4
|
+
data.tar.gz: b68a08e00277a5e32c198371d4ae1d0cfebb677f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 98b4b4f91328ceab8c27f79ae377637b006869eaccd3cd18b3fff17b10e9c52716e7cdb7ede562dd4e1aeda593332fb43dddcb3b7f04de01c1c6b279928577d6
|
7
|
+
data.tar.gz: a32e2368178f1da29d8d9c37c829e0ff301deaf4dd22af276989ec138454b2921309a74b0a541ce8db859656ca254bba381ce1ee0f13f175e0f53637c59b1753
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Timon Vonk
|
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,33 @@
|
|
1
|
+
# Structpluck
|
2
|
+
|
3
|
+
A very simple gem that allows you to pluck to structs instead of ugly multidimensional arrays. Still very fast, but at least you'll get a rigid data type. :-)
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'structpluck'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install structpluck
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Include it in your active record class and then:
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
YourClass.where(query).struct_pluck(*column_names) # => SO MANY STRUCTS
|
25
|
+
```
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
1. Fork it
|
30
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
31
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
32
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
33
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/lib/structpluck.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require "structpluck/version"
|
2
|
+
require 'active_record'
|
3
|
+
|
4
|
+
module Structpluck
|
5
|
+
def self.included(base)
|
6
|
+
base.extend(ClassMethods)
|
7
|
+
end
|
8
|
+
|
9
|
+
module ClassMethods
|
10
|
+
def struct_pluck(*column_names)
|
11
|
+
result = pluck(*column_names)
|
12
|
+
|
13
|
+
fakerecord = Struct.new(*column_names)
|
14
|
+
result.map { |r| fakerecord.new(*r) }
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/structpluck.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'structpluck/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "structpluck"
|
8
|
+
spec.version = Structpluck::VERSION
|
9
|
+
spec.authors = ["Timon Vonk"]
|
10
|
+
spec.email = ["timonv@gmail.com"]
|
11
|
+
spec.description = %q{Pluck structs from activerecord}
|
12
|
+
spec.summary = %q{Pluck structs from activerecord}
|
13
|
+
spec.homepage = "http://www.github.com/timonv/structpluck"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_development_dependency "activerecord"
|
24
|
+
spec.add_development_dependency "sqlite3"
|
25
|
+
|
26
|
+
spec.add_dependency "activerecord"
|
27
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'structpluck'
|
3
|
+
require 'support/test_class'
|
4
|
+
|
5
|
+
class StructpluckTest < Test::Unit::TestCase
|
6
|
+
def setup
|
7
|
+
setup_schema_and_database
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_simple_struct
|
11
|
+
TestClass.create!(title: 'test', description: 'othertest', created_at: Time.now)
|
12
|
+
structs = TestClass.struct_pluck(:title)
|
13
|
+
|
14
|
+
assert_equal 'test', structs.first.title
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_multiple_columns_and_results
|
18
|
+
TestClass.create!(title: 'test', description: 'othertest', created_at: Time.now)
|
19
|
+
TestClass.create!(title: 'test2', description: 'othertest2', created_at: Time.now)
|
20
|
+
|
21
|
+
structs = TestClass.struct_pluck(:title, :description)
|
22
|
+
assert structs.length == 2
|
23
|
+
assert structs[0].title == 'test'
|
24
|
+
assert structs[1].title == 'test2'
|
25
|
+
|
26
|
+
assert structs[0].description == 'othertest'
|
27
|
+
assert structs[1].description == 'othertest2'
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'active_record'
|
2
|
+
|
3
|
+
class TestClass < ActiveRecord::Base
|
4
|
+
include Structpluck
|
5
|
+
end
|
6
|
+
|
7
|
+
def setup_schema_and_database
|
8
|
+
# ActiveRecord::Base.logger = Logger.new(STDERR)
|
9
|
+
# ActiveRecord::Base.colorize_logging = false
|
10
|
+
|
11
|
+
ActiveRecord::Base.establish_connection(
|
12
|
+
:adapter => "sqlite3",
|
13
|
+
:dbfile => ":memory:",
|
14
|
+
:database => "test_structp"
|
15
|
+
)
|
16
|
+
|
17
|
+
ActiveRecord::Base.connection.drop_table :test_classes rescue nil
|
18
|
+
|
19
|
+
ActiveRecord::Schema.define do
|
20
|
+
create_table :test_classes do |table|
|
21
|
+
table.column :title, :string
|
22
|
+
table.column :description, :string
|
23
|
+
table.column :created_at, :datetime
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: structpluck
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Timon Vonk
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-12-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: activerecord
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: sqlite3
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: activerecord
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Pluck structs from activerecord
|
84
|
+
email:
|
85
|
+
- timonv@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- .gitignore
|
91
|
+
- Gemfile
|
92
|
+
- LICENSE.txt
|
93
|
+
- README.md
|
94
|
+
- Rakefile
|
95
|
+
- lib/structpluck.rb
|
96
|
+
- lib/structpluck/version.rb
|
97
|
+
- structpluck.gemspec
|
98
|
+
- test/structpluck_test.rb
|
99
|
+
- test/support/test_class.rb
|
100
|
+
homepage: http://www.github.com/timonv/structpluck
|
101
|
+
licenses:
|
102
|
+
- MIT
|
103
|
+
metadata: {}
|
104
|
+
post_install_message:
|
105
|
+
rdoc_options: []
|
106
|
+
require_paths:
|
107
|
+
- lib
|
108
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - '>='
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
requirements: []
|
119
|
+
rubyforge_project:
|
120
|
+
rubygems_version: 2.1.11
|
121
|
+
signing_key:
|
122
|
+
specification_version: 4
|
123
|
+
summary: Pluck structs from activerecord
|
124
|
+
test_files:
|
125
|
+
- test/structpluck_test.rb
|
126
|
+
- test/support/test_class.rb
|
127
|
+
has_rdoc:
|