rsql 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +19 -0
- data/example.rsqlrc +291 -0
- data/extra/mysql-client-5.1.59-1.tgz +0 -0
- data/lib/rsql.rb +10 -0
- data/lib/rsql/commands.rb +243 -0
- data/lib/rsql/eval_context.rb +737 -0
- data/lib/rsql/mysql_results.rb +470 -0
- data/test/test_commands.rb +85 -0
- data/test/test_eval_context.rb +179 -0
- data/test/test_mysql_results.rb +192 -0
- metadata +17 -10
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rsql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 7
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 8
|
10
|
+
version: 0.2.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Brad Robel-Forrest
|
@@ -107,11 +107,7 @@ dependencies:
|
|
107
107
|
version: "0"
|
108
108
|
type: :development
|
109
109
|
version_requirements: *id006
|
110
|
-
description:
|
111
|
-
RSQL makes working with a MySQL command line more convenient through
|
112
|
-
the use of recipes and embedding the common operation of using a SSH
|
113
|
-
connection to an intermediary host for access to the MySQL server.
|
114
|
-
|
110
|
+
description: RSQL makes working with a MySQL command line more convenient throughthe use of recipes and embedding the common operation of using a SSHconnection to an intermediary host for access to the MySQL server.
|
115
111
|
email: brad+rsql@gigglewax.com
|
116
112
|
executables:
|
117
113
|
- rsql
|
@@ -119,9 +115,20 @@ extensions: []
|
|
119
115
|
|
120
116
|
extra_rdoc_files:
|
121
117
|
- README.rdoc
|
118
|
+
- LICENSE
|
122
119
|
files:
|
123
|
-
-
|
120
|
+
- LICENSE
|
124
121
|
- README.rdoc
|
122
|
+
- bin/rsql
|
123
|
+
- example.rsqlrc
|
124
|
+
- extra/mysql-client-5.1.59-1.tgz
|
125
|
+
- lib/rsql.rb
|
126
|
+
- lib/rsql/commands.rb
|
127
|
+
- lib/rsql/eval_context.rb
|
128
|
+
- lib/rsql/mysql_results.rb
|
129
|
+
- test/test_commands.rb
|
130
|
+
- test/test_eval_context.rb
|
131
|
+
- test/test_mysql_results.rb
|
125
132
|
homepage: https://rubygems.org/gems/rsql
|
126
133
|
licenses: []
|
127
134
|
|
@@ -159,6 +166,6 @@ rubyforge_project:
|
|
159
166
|
rubygems_version: 1.8.16
|
160
167
|
signing_key:
|
161
168
|
specification_version: 3
|
162
|
-
summary: Ruby
|
169
|
+
summary: Ruby-based MySQL command line with recipes.
|
163
170
|
test_files: []
|
164
171
|
|