grntest 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c4da22645c51bc7a2f74a60d727f04fc123f9f3
4
- data.tar.gz: 9f01ad9f0c434f3922fda5b2db584861a9e79a19
3
+ metadata.gz: 942d6904ffdb299bc06a436416abbd5161be865c
4
+ data.tar.gz: 4fe3d75f0d6cd99c5c3aac7586ef812ca6f1d6d1
5
5
  SHA512:
6
- metadata.gz: 1b740176e04d147d62c040eb1c98dc98619ffe033008aa44214e1475874b4308368d127d221784f4c8a52b85ec875755380c1f5a3837ed26de0dee34565f1ed8
7
- data.tar.gz: 953b462900e9ecc68df27bf9bfd6996c1870450871a200774842aa9c9a5fa3df98bf9d28805893c6fb32c67a39bc6f201be763c071691ae02c2013e788ae419d
6
+ metadata.gz: 2d15beda7b6fe693091a2b3d90d1f6ce3277846044d8f5376795e4d160ed79989c3ae6e5361d7ed3e950bbbb11297cbbf27ecacbb960ce471c3e06713475b1ba
7
+ data.tar.gz: bc6903386c278bbeed019106da7b833fa4a8aff775f57fbf31b12799515f101c9da026fddb00d0a4f6ee5bf47d54c7a45788df8decdff93aa4c069c1e1da4e4d
data/Rakefile CHANGED
@@ -31,7 +31,9 @@ end
31
31
  helper.install
32
32
  spec = helper.gemspec
33
33
 
34
- Packnga::DocumentTask.new(spec) do
34
+ Packnga::DocumentTask.new(spec) do |task|
35
+ task.original_language = "en"
36
+ task.translate_languages = ["ja"]
35
37
  end
36
38
 
37
39
  Packnga::ReleaseTask.new(spec) do
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 improvment release.
17
+ This is a minor improvement release.
12
18
 
13
19
  ### Improvements
14
20
 
@@ -395,7 +395,10 @@ EOF
395
395
  "-n", db_path,
396
396
  "shutdown"
397
397
  ]
398
- system(*create_database_command)
398
+ options = {
399
+ output_fd.to_i => output_fd.to_i
400
+ }
401
+ system(*create_database_command, options)
399
402
  output_fd.close(true)
400
403
  end
401
404
 
@@ -14,5 +14,5 @@
14
14
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
15
 
16
16
  module Grntest
17
- VERSION = "1.0.4"
17
+ VERSION = "1.0.5"
18
18
  end
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
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: 2013-12-16 00:00:00.000000000 Z
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/tester.rb
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/response-parser.rb
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/test-suites-runner.rb
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/reporters/mark-reporter.rb
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.14
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: