grntest 1.0.4 → 1.0.5
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/Rakefile +3 -1
- data/doc/text/news.md +7 -1
- data/lib/grntest/test-runner.rb +4 -1
- data/lib/grntest/version.rb +1 -1
- metadata +19 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 942d6904ffdb299bc06a436416abbd5161be865c
|
4
|
+
data.tar.gz: 4fe3d75f0d6cd99c5c3aac7586ef812ca6f1d6d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d15beda7b6fe693091a2b3d90d1f6ce3277846044d8f5376795e4d160ed79989c3ae6e5361d7ed3e950bbbb11297cbbf27ecacbb960ce471c3e06713475b1ba
|
7
|
+
data.tar.gz: bc6903386c278bbeed019106da7b833fa4a8aff775f57fbf31b12799515f101c9da026fddb00d0a4f6ee5bf47d54c7a45788df8decdff93aa4c069c1e1da4e4d
|
data/Rakefile
CHANGED
data/doc/text/news.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# News
|
2
2
|
|
3
|
+
## 1.0.5: 2014-02-13
|
4
|
+
|
5
|
+
### Improvements
|
6
|
+
|
7
|
+
* Supported Ruby 2.0.0 or later.
|
8
|
+
|
3
9
|
## 1.0.4: 2013-12-16
|
4
10
|
|
5
11
|
### Improvements
|
@@ -8,7 +14,7 @@
|
|
8
14
|
|
9
15
|
## 1.0.3: 2013-08-12
|
10
16
|
|
11
|
-
This is a minor
|
17
|
+
This is a minor improvement release.
|
12
18
|
|
13
19
|
### Improvements
|
14
20
|
|
data/lib/grntest/test-runner.rb
CHANGED
data/lib/grntest/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grntest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2014-02-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|
@@ -151,29 +151,29 @@ files:
|
|
151
151
|
- Gemfile
|
152
152
|
- grntest.gemspec
|
153
153
|
- .yardopts
|
154
|
+
- lib/grntest/reporters.rb
|
154
155
|
- lib/grntest/test-runner.rb
|
155
|
-
- lib/grntest/
|
156
|
+
- lib/grntest/execution-context.rb
|
157
|
+
- lib/grntest/executors/standard-io-executor.rb
|
158
|
+
- lib/grntest/executors/base-executor.rb
|
159
|
+
- lib/grntest/executors/http-executor.rb
|
156
160
|
- lib/grntest/worker.rb
|
157
|
-
- lib/grntest/
|
158
|
-
- lib/grntest/error.rb
|
159
|
-
- lib/grntest/base-result.rb
|
161
|
+
- lib/grntest/tester.rb
|
160
162
|
- lib/grntest/version.rb
|
161
|
-
- lib/grntest/
|
162
|
-
- lib/grntest/executors/http-executor.rb
|
163
|
-
- lib/grntest/executors/base-executor.rb
|
164
|
-
- lib/grntest/executors/standard-io-executor.rb
|
165
|
-
- lib/grntest/executors.rb
|
166
|
-
- lib/grntest/execution-context.rb
|
167
|
-
- lib/grntest/reporters.rb
|
163
|
+
- lib/grntest/error.rb
|
168
164
|
- lib/grntest/reporters/inplace-reporter.rb
|
165
|
+
- lib/grntest/reporters/mark-reporter.rb
|
169
166
|
- lib/grntest/reporters/stream-reporter.rb
|
170
167
|
- lib/grntest/reporters/base-reporter.rb
|
171
|
-
- lib/grntest/
|
168
|
+
- lib/grntest/base-result.rb
|
169
|
+
- lib/grntest/test-suites-runner.rb
|
170
|
+
- lib/grntest/executors.rb
|
171
|
+
- lib/grntest/response-parser.rb
|
172
172
|
- doc/text/news.md
|
173
173
|
- doc/text/gpl-3.0.txt
|
174
|
-
- test/run-test.rb
|
175
|
-
- test/executors/test-base-executor.rb
|
176
174
|
- test/executors/test-standard-io-executor.rb
|
175
|
+
- test/executors/test-base-executor.rb
|
176
|
+
- test/run-test.rb
|
177
177
|
- bin/grntest
|
178
178
|
homepage: https://github.com/groonga/grntest
|
179
179
|
licenses:
|
@@ -195,13 +195,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
195
|
version: '0'
|
196
196
|
requirements: []
|
197
197
|
rubyforge_project:
|
198
|
-
rubygems_version: 2.0.
|
198
|
+
rubygems_version: 2.0.13
|
199
199
|
signing_key:
|
200
200
|
specification_version: 4
|
201
201
|
summary: Grntest is a testing framework for groonga. You can write a test for groonga
|
202
202
|
by writing groonga commands and expected result.
|
203
203
|
test_files:
|
204
|
-
- test/run-test.rb
|
205
|
-
- test/executors/test-base-executor.rb
|
206
204
|
- test/executors/test-standard-io-executor.rb
|
205
|
+
- test/executors/test-base-executor.rb
|
206
|
+
- test/run-test.rb
|
207
207
|
has_rdoc:
|