gda 1.0.1 → 1.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.
- checksums.yaml +4 -4
- data/README.rdoc +0 -5
- data/ext/gda/extconf.rb +5 -1
- data/lib/gda.rb +1 -1
- metadata +11 -17
- data/.gemtest +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24187edab9ea611cc70441c2cd71e6ebf45b1e35
|
|
4
|
+
data.tar.gz: ea34f33ca8d22358c1f9e3649179dfcfc403cabe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdbad785a72ccd235f8b0cf214b776db7d3c7f0db20a7561fd02163a520c055858323994944f68fc714e535a1866400c0fd256581ed6f91c0b665521a86d918f
|
|
7
|
+
data.tar.gz: 21f5de0090fdf3d28415f144eadf936a9021145c12de5f7cd29a6bb14b5aef3d1204eb9ca03bc3adea973a90c24ee52dc35e580d641004487a4f8389f168f961
|
data/README.rdoc
CHANGED
data/ext/gda/extconf.rb
CHANGED
|
@@ -7,7 +7,11 @@ ENV['PKG_CONFIG_PATH'] ||= '/usr/local/Library/ENV/pkgconfig/10.8'
|
|
|
7
7
|
dir_config 'libgda'
|
|
8
8
|
|
|
9
9
|
def asplode missing
|
|
10
|
-
abort
|
|
10
|
+
abort <<-MSG
|
|
11
|
+
#{missing} is missing. Try 'brew install libgda' if you are on OSX and have homebrew installed.
|
|
12
|
+
You can also check https://github.com/GNOME/libgda for more info on how to install
|
|
13
|
+
the dependency.
|
|
14
|
+
MSG
|
|
11
15
|
end
|
|
12
16
|
|
|
13
17
|
pkg_config 'libgda-5.0'
|
data/lib/gda.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gda
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aaron Patterson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-12-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minitest
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '5.
|
|
19
|
+
version: '5.8'
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '5.
|
|
26
|
+
version: '5.8'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rdoc
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '3.
|
|
75
|
+
version: '3.14'
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '3.
|
|
82
|
+
version: '3.14'
|
|
83
83
|
description: |-
|
|
84
84
|
An SQL parser. Wraps libgda in a loving embrace to give you a ruby level SQL
|
|
85
85
|
parser.
|
|
@@ -120,9 +120,9 @@ files:
|
|
|
120
120
|
- test/test_node_attributes.rb
|
|
121
121
|
- test/test_nodes.rb
|
|
122
122
|
- test/test_statement.rb
|
|
123
|
-
- ".gemtest"
|
|
124
123
|
homepage: http://github.com/tenderlove/gda
|
|
125
|
-
licenses:
|
|
124
|
+
licenses:
|
|
125
|
+
- MIT
|
|
126
126
|
metadata: {}
|
|
127
127
|
post_install_message:
|
|
128
128
|
rdoc_options:
|
|
@@ -141,15 +141,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
141
141
|
- !ruby/object:Gem::Version
|
|
142
142
|
version: '0'
|
|
143
143
|
requirements: []
|
|
144
|
-
rubyforge_project:
|
|
145
|
-
rubygems_version: 2.
|
|
144
|
+
rubyforge_project:
|
|
145
|
+
rubygems_version: 2.4.5.1
|
|
146
146
|
signing_key:
|
|
147
147
|
specification_version: 4
|
|
148
148
|
summary: An SQL parser
|
|
149
|
-
test_files:
|
|
150
|
-
- test/test_dot_visitor.rb
|
|
151
|
-
- test/test_gda.rb
|
|
152
|
-
- test/test_max_depth.rb
|
|
153
|
-
- test/test_node_attributes.rb
|
|
154
|
-
- test/test_nodes.rb
|
|
155
|
-
- test/test_statement.rb
|
|
149
|
+
test_files: []
|
data/.gemtest
DELETED
|
File without changes
|