table-query 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +7 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +68 -0
- data/Rakefile +11 -0
- data/example/calendar-jp/calendar-jp-query.rb +20 -0
- data/example/calendar-jp/calendar-jp-schema.rb +33 -0
- data/example/calendar-jp/calendar-jp.csv +365 -0
- data/example/simple/simple-query.rb +6 -0
- data/example/simple/simple-schema.rb +17 -0
- data/example/simple/simple.csv +6 -0
- data/lib/table-query.rb +26 -0
- data/lib/table-query/field.rb +4 -0
- data/lib/table-query/query-schema.rb +96 -0
- data/lib/table-query/query.rb +54 -0
- data/lib/table-query/schema-loader.rb +92 -0
- data/lib/table-query/table-schema.rb +34 -0
- data/lib/table-query/table.rb +61 -0
- data/lib/table-query/type.rb +121 -0
- data/lib/table-query/version.rb +4 -0
- data/table-query.gemspec +21 -0
- data/test/spec_field.rb +24 -0
- data/test/spec_query-schema.rb +42 -0
- data/test/spec_query.rb +35 -0
- data/test/spec_schema-loader.rb +15 -0
- data/test/spec_table-schema.rb +18 -0
- data/test/spec_table.rb +27 -0
- data/test/spec_type.rb +97 -0
- data/test/table/alphabet-schema.rb +14 -0
- data/test/table/alphabet.csv +26 -0
- data/test/table/calendar-schema.rb +29 -0
- data/test/table/calendar.csv +365 -0
- metadata +105 -0
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: table-query
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Keita Yamaguchi
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-02-17 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bacon
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: table-query is a library to query table data by easy way.
|
31
|
+
email:
|
32
|
+
- keita.yamaguchi@gmail.com
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- Gemfile
|
39
|
+
- LICENSE.txt
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- example/calendar-jp/calendar-jp-query.rb
|
43
|
+
- example/calendar-jp/calendar-jp-schema.rb
|
44
|
+
- example/calendar-jp/calendar-jp.csv
|
45
|
+
- example/simple/simple-query.rb
|
46
|
+
- example/simple/simple-schema.rb
|
47
|
+
- example/simple/simple.csv
|
48
|
+
- lib/table-query.rb
|
49
|
+
- lib/table-query/field.rb
|
50
|
+
- lib/table-query/query-schema.rb
|
51
|
+
- lib/table-query/query.rb
|
52
|
+
- lib/table-query/schema-loader.rb
|
53
|
+
- lib/table-query/table-schema.rb
|
54
|
+
- lib/table-query/table.rb
|
55
|
+
- lib/table-query/type.rb
|
56
|
+
- lib/table-query/version.rb
|
57
|
+
- table-query.gemspec
|
58
|
+
- test/spec_field.rb
|
59
|
+
- test/spec_query-schema.rb
|
60
|
+
- test/spec_query.rb
|
61
|
+
- test/spec_schema-loader.rb
|
62
|
+
- test/spec_table-schema.rb
|
63
|
+
- test/spec_table.rb
|
64
|
+
- test/spec_type.rb
|
65
|
+
- test/table/alphabet-schema.rb
|
66
|
+
- test/table/alphabet.csv
|
67
|
+
- test/table/calendar-schema.rb
|
68
|
+
- test/table/calendar.csv
|
69
|
+
homepage: https://github.com/keita/table-query
|
70
|
+
licenses: []
|
71
|
+
post_install_message:
|
72
|
+
rdoc_options: []
|
73
|
+
require_paths:
|
74
|
+
- lib
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
77
|
+
requirements:
|
78
|
+
- - ! '>='
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
83
|
+
requirements:
|
84
|
+
- - ! '>='
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
requirements: []
|
88
|
+
rubyforge_project:
|
89
|
+
rubygems_version: 1.8.25
|
90
|
+
signing_key:
|
91
|
+
specification_version: 3
|
92
|
+
summary: query table data by easy way
|
93
|
+
test_files:
|
94
|
+
- test/spec_field.rb
|
95
|
+
- test/spec_query-schema.rb
|
96
|
+
- test/spec_query.rb
|
97
|
+
- test/spec_schema-loader.rb
|
98
|
+
- test/spec_table-schema.rb
|
99
|
+
- test/spec_table.rb
|
100
|
+
- test/spec_type.rb
|
101
|
+
- test/table/alphabet-schema.rb
|
102
|
+
- test/table/alphabet.csv
|
103
|
+
- test/table/calendar-schema.rb
|
104
|
+
- test/table/calendar.csv
|
105
|
+
has_rdoc:
|