isolated_database_service 0.0.6 → 0.0.7
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/.travis.yml +10 -2
- data/Gemfile.lock +3 -3
- data/README.md +2 -1
- data/lib/isolated_database_service/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b36abd94c60c84438e2ef59688cc41d4a7032df
|
|
4
|
+
data.tar.gz: 69cf990b1ac1fdbd3352dc391f7a3661797b4fce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f49022ea171364f9ddc7b1d9f6bb1ae046104b317abfdbd8141bb7d529a03b5279e43ac3718fd7682dce4beb6c252508af3cfcda3a527d89e316bff3393c95f
|
|
7
|
+
data.tar.gz: 6563df5663b50fd98e78dda5737d433f5cdc88e847070674402ebc6ac69088632c3b72a34c8934ad1a39d485f332825f0c7b3f6c97f58e7e39b2366a0700e9fb
|
data/.travis.yml
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
cache: bundler
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
sudo: required
|
|
4
|
+
|
|
3
5
|
language: ruby
|
|
6
|
+
|
|
4
7
|
rvm:
|
|
5
|
-
- 2.1
|
|
6
8
|
- 2.2
|
|
9
|
+
- 2.3
|
|
10
|
+
- 2.4
|
|
11
|
+
|
|
7
12
|
script: bundle exec rspec
|
|
8
13
|
|
|
14
|
+
before_script:
|
|
15
|
+
- sudo cp /usr/share/doc/mysql-server-5.6/examples/my-default.cnf /usr/share/mysql/my-default.cnf
|
|
16
|
+
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
isolated_database_service (0.0.
|
|
4
|
+
isolated_database_service (0.0.7)
|
|
5
5
|
isolated_server
|
|
6
6
|
mysql2
|
|
7
7
|
rack-parser
|
|
@@ -14,7 +14,7 @@ GEM
|
|
|
14
14
|
backports (3.6.7)
|
|
15
15
|
bump (0.5.3)
|
|
16
16
|
diff-lcs (1.2.5)
|
|
17
|
-
isolated_server (0.4.
|
|
17
|
+
isolated_server (0.4.12)
|
|
18
18
|
multi_json (1.11.2)
|
|
19
19
|
mysql2 (0.4.2)
|
|
20
20
|
rack (1.6.4)
|
|
@@ -67,4 +67,4 @@ DEPENDENCIES
|
|
|
67
67
|
sinatra-contrib
|
|
68
68
|
|
|
69
69
|
BUNDLED WITH
|
|
70
|
-
1.
|
|
70
|
+
1.15.4
|
data/README.md
CHANGED
|
@@ -177,7 +177,8 @@ The optional `initial_sql` property contains an array of SQL statements to execu
|
|
|
177
177
|
```bash
|
|
178
178
|
curl -H "Content-Type: application/json" \
|
|
179
179
|
-d '{"cluster":{"initial_sql":[
|
|
180
|
-
"CREATE
|
|
180
|
+
"CREATE DATABASE test", \
|
|
181
|
+
"CREATE TABLE test.foo (id INT, value INT)", \
|
|
181
182
|
"INSERT INTO test.foo VALUES (1, 2)"]}}' \
|
|
182
183
|
-X POST http://localhost:9000/mysql-clusters
|
|
183
184
|
```
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: isolated_database_service
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gary Grossman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-10-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bump
|
|
@@ -179,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
179
179
|
version: '0'
|
|
180
180
|
requirements: []
|
|
181
181
|
rubyforge_project:
|
|
182
|
-
rubygems_version: 2.4.5.
|
|
182
|
+
rubygems_version: 2.4.5.3
|
|
183
183
|
signing_key:
|
|
184
184
|
specification_version: 4
|
|
185
185
|
summary: Service wrapper for the isolated_server gem.
|