aruba 0.9.0.pre2 → 0.9.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f92ba90eaed6ac6f97ad8b43f5913fde2fb0f3a1
4
- data.tar.gz: 1ab9079d180953f236b8529749303059a142cc85
3
+ metadata.gz: f2e3003b3ecea3cf45cddaf06835c8ffe7268c6f
4
+ data.tar.gz: 8c01fda685c1a9900410307d833c22f2c8974000
5
5
  SHA512:
6
- metadata.gz: 8ab6deff05d7a0366724279a055ce42296b7549b50cf8acd71b655823ad471d19ff3313001e1913da4ea2246f9bf06ff58284d1460dd5b535b947f457536c674
7
- data.tar.gz: f234b29f5ae59ebc4ed1cc9939d4d358d3bd4d0ac3212c1a56f0151b4bc4743fe4cd623750e044dfba2417e46a79b1124c1b06e05a301a10ceda89989d000849
6
+ metadata.gz: 5d36c1041b9b3e9133534c12e97e988bdfa790da359819a545f5081250e5c165a4c99f2731de036e387ad5a1cb48224df31f4959f4b58ca8f3f1eda936efc906
7
+ data.tar.gz: abc7f2b9dd945b80debf37586c7ac4f20632d8e01fdd87c3fc80e4c810b71b18cd830acd039ab3b8250af9fcf42bee18a168f3beb17eca2e94ae9154d8f89631
data/History.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Latest Release
2
2
 
3
+ ## [v0.9.0.pre2](https://github.com/cucumber/aruba/compare/v0.9.0.pre...v0.9.0.pre2)
4
+
5
+ * Redefine #to_s and #inspect for BasicProcess to reduce the sheer amount of
6
+ information, if a command produces a lot of output
7
+ * Added new matcher `#all_objects` to check if an object is included + a error message for
8
+ failures which is similar to the `#all`-matcher of `RSpec`
9
+ * Add `have_output`-, `have_output_on_stderr`, `have_output_on_stdout`-matchers
10
+ * Replace all `assert_*` and `check_*`-methods through expectations
11
+ * Add hook `@announce-output` to output both, stderr and stdout
12
+ * Add a lot of documentation (issue #260)
13
+ * Replace `#last_command` through `#last_command_started` and
14
+ `#last_command_stopped` to make it more explicit
15
+ * Improve syntax highlighting in cucumber feature tests by adding programming
16
+ language to `"""`-blocks
17
+ * Rename tags `@ignore-*` to `@unsupported-on-*`
18
+ * Introduce our own `BaseMatcher`-class to remove the dependency to `RSpec`'s
19
+ private matcher APIs
20
+ * Now we make the process started via `SpawnProcess` the leader of the group to
21
+ kill all sub-processes more reliably
22
+
23
+ # Old releases
24
+
3
25
  ## [v0.9.0.pre](https://github.com/cucumber/aruba/compare/v0.8.1...v0.9.0.pre)
4
26
 
5
27
  * Improve documentation for filesystem api and move it to feature tests
@@ -18,7 +40,6 @@
18
40
  * Split up `#which` for Windows and Unix/Linux (issue #304)
19
41
  * Add `aruba console`-command to play around with aruba (issue 305)
20
42
 
21
- # Old releases
22
43
 
23
44
  ## [v0.8.1](https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.1)
24
45
 
@@ -368,26 +389,6 @@
368
389
 
369
390
  # Upcoming un-released versions
370
391
 
371
- ## [v0.9.0.pre2](https://github.com/cucumber/aruba/compare/v0.9.0.pre...v0.9.0.pre2)
372
-
373
- * Redefine #to_s and #inspect for BasicProcess to reduce the sheer amount of
374
- information, if a command produces a lot of output
375
- * Added new matcher `#all_objects` to check if an object is included + a error message for
376
- failures which is similar to the `#all`-matcher of `RSpec`
377
- * Add `have_output`-, `have_output_on_stderr`, `have_output_on_stdout`-matchers
378
- * Replace all `assert_*` and `check_*`-methods through expectations
379
- * Add hook `@announce-output` to output both, stderr and stdout
380
- * Add a lot of documentation (issue #260)
381
- * Replace `#last_command` through `#last_command_started` and
382
- `#last_command_stopped` to make it more explicit
383
- * Improve syntax highlighting in cucumber feature tests by adding programming
384
- language to `"""`-blocks
385
- * Rename tags `@ignore-*` to `@unsupported-on-*`
386
- * Introduce our own `BaseMatcher`-class to remove the dependency to `RSpec`'s
387
- private matcher APIs
388
- * Now we make the process started via `SpawnProcess` the leader of the group to
389
- kill all sub-processes more reliably
390
-
391
392
  ## [v1.0.0](https://github.com/cucumber/aruba/compare/v0.11.0...v1.0.0)
392
393
 
393
394
  * Support for rubies older than 1.9.3 is discontinued - e.g 1.8.7 and 1.9.2
@@ -46,7 +46,6 @@ Feature: Debug your command in cucumber-test-run
46
46
  When I successfully run `cucumber`
47
47
  Then the features should all pass
48
48
 
49
- @unsupported-on-ruby-older-193
50
49
  Scenario: You can use a debug repl in your cli program
51
50
 
52
51
  If you want to debug a strange error, which only occures in one of your
@@ -85,9 +84,9 @@ Feature: Debug your command in cucumber-test-run
85
84
  When I run `cucumber` interactively
86
85
  And I stop the command started last if output contains:
87
86
  """
88
- pry
87
+ pry(main)>
89
88
  """
90
- Then the output should contain:
89
+ Then the output should match:
91
90
  """
92
- binding.pry
91
+ 7:\s+binding.pry
93
92
  """
@@ -1,6 +1,9 @@
1
1
  require 'fileutils'
2
2
 
3
3
  if(ENV['ARUBA_REPORT_DIR'])
4
+ require 'aruba/platform'
5
+ Aruba.platform.deprecated 'The use of "aruba/reporting" is deprecated. This functionality will be removed with "1.0.0"'
6
+
4
7
  ENV['ARUBA_REPORT_TEMPLATES'] ||= File.dirname(__FILE__) + '/../../templates'
5
8
 
6
9
  require 'fileutils'
@@ -1,3 +1,3 @@
1
1
  module Aruba
2
- VERSION = '0.9.0.pre2'
2
+ VERSION = '0.9.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aruba
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0.pre2
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aslak Hellesøy
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2015-08-15 00:00:00.000000000 Z
16
+ date: 2015-08-18 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: cucumber
@@ -415,15 +415,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
415
415
  version: 1.8.7
416
416
  required_rubygems_version: !ruby/object:Gem::Requirement
417
417
  requirements:
418
- - - ">"
418
+ - - ">="
419
419
  - !ruby/object:Gem::Version
420
- version: 1.3.1
420
+ version: '0'
421
421
  requirements: []
422
422
  rubyforge_project:
423
423
  rubygems_version: 2.4.5
424
424
  signing_key:
425
425
  specification_version: 4
426
- summary: aruba-0.9.0.pre2
426
+ summary: aruba-0.9.0
427
427
  test_files:
428
428
  - features/announce.feature
429
429
  - features/api/command/extract_text.feature