aruba 0.3.2 → 0.3.3

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.
data/.gitignore CHANGED
@@ -20,4 +20,5 @@ pkg
20
20
 
21
21
  ## PROJECT::SPECIFIC
22
22
  tmp
23
- Gemfile.lock
23
+ Gemfile.lock
24
+ .bundle
@@ -1,3 +1,8 @@
1
+ == 0.3.3
2
+
3
+ * Updated RSpec development requirement to 2.5 (Robert Speicher, Mike Sassak, Aslak Hellesøy)
4
+ * Updated RubyGems dependency to 1.6.1 (Robert Speicher)
5
+
1
6
  == 0.3.2
2
7
 
3
8
  === Bugfixes
@@ -7,7 +7,7 @@ a compiled C program, a Java program, a Perl script - anything.
7
7
 
8
8
  gem install aruba
9
9
 
10
- Then, just require the library in one of your ruby files under <tt>features/support</tt>
10
+ Then, just require the library in one of your ruby files under <tt>features/support</tt> (e.g. <tt>env.rb</tt>)
11
11
 
12
12
  require 'aruba/cucumber'
13
13
 
@@ -56,7 +56,8 @@ before reading or writing to the process if it is still running. You can control
56
56
  * Fork the project.
57
57
  * Make your feature addition or bug fix.
58
58
  * Add tests for it. This is important so I don't break it in a
59
- future version unintentionally.
59
+ future version unintentionally. Note: the existing tests may fail
60
+ with pre-1.9 versions of ruby; upgrade to get clean runs.
60
61
  * Commit, do not mess with rakefile, version, or history.
61
62
  (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
62
63
  * Send me a pull request. Bonus points for topic branches.
@@ -2,18 +2,18 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'aruba'
5
- s.version = '0.3.2'
5
+ s.version = '0.3.3'
6
6
  s.authors = ["Aslak Hellesøy", "David Chelimsky", "Mike Sassak"]
7
7
  s.description = 'CLI Steps for Cucumber, hand-crafted for you in Aruba'
8
8
  s.summary = "aruba-#{s.version}"
9
9
  s.email = 'cukes@googlegroups.com'
10
10
  s.homepage = 'http://github.com/aslakhellesoy/aruba'
11
11
 
12
- s.add_dependency 'cucumber', '~> 0.10.0'
13
- s.add_dependency 'childprocess', '~> 0.1.6'
14
- s.add_dependency 'rspec', '~> 2.3.0'
12
+ s.add_dependency 'cucumber', '~> 0.10'
13
+ s.add_dependency 'childprocess', '~> 0.1.7'
14
+ s.add_dependency 'rspec', '~> 2.5'
15
15
 
16
- s.rubygems_version = "1.3.7"
16
+ s.rubygems_version = ">= 1.6.1"
17
17
  s.files = `git ls-files`.split("\n")
18
18
  s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
19
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
@@ -132,6 +132,7 @@ module Aruba
132
132
  processes.values.inject("") { |out, ps| out << ps.stdout }
133
133
  end
134
134
 
135
+ # Note, with pre-1.9 ruby, the ordering of this may change. Use ruby 1.9.x or later.
135
136
  def all_stderr
136
137
  processes.values.inject("") { |out, ps| out << ps.stderr }
137
138
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 2
9
- version: 0.3.2
8
+ - 3
9
+ version: 0.3.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Aslak Helles\xC3\xB8y"
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-12-29 00:00:00 -06:00
19
+ date: 2011-03-13 00:00:00 +00:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -29,8 +29,7 @@ dependencies:
29
29
  segments:
30
30
  - 0
31
31
  - 10
32
- - 0
33
- version: 0.10.0
32
+ version: "0.10"
34
33
  type: :runtime
35
34
  prerelease: false
36
35
  version_requirements: *id001
@@ -44,8 +43,8 @@ dependencies:
44
43
  segments:
45
44
  - 0
46
45
  - 1
47
- - 6
48
- version: 0.1.6
46
+ - 7
47
+ version: 0.1.7
49
48
  type: :runtime
50
49
  prerelease: false
51
50
  version_requirements: *id002
@@ -58,9 +57,8 @@ dependencies:
58
57
  - !ruby/object:Gem::Version
59
58
  segments:
60
59
  - 2
61
- - 3
62
- - 0
63
- version: 2.3.0
60
+ - 5
61
+ version: "2.5"
64
62
  type: :runtime
65
63
  prerelease: false
66
64
  version_requirements: *id003
@@ -75,7 +73,6 @@ extra_rdoc_files:
75
73
  - README.rdoc
76
74
  - History.txt
77
75
  files:
78
- - .bundle/config
79
76
  - .document
80
77
  - .gitignore
81
78
  - .rvmrc
@@ -112,7 +109,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
112
109
  requirements:
113
110
  - - ">="
114
111
  - !ruby/object:Gem::Version
115
- hash: 3194082556111490902
112
+ hash: -2014879782021527006
116
113
  segments:
117
114
  - 0
118
115
  version: "0"
@@ -121,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
118
  requirements:
122
119
  - - ">="
123
120
  - !ruby/object:Gem::Version
124
- hash: 3194082556111490902
121
+ hash: -2014879782021527006
125
122
  segments:
126
123
  - 0
127
124
  version: "0"
@@ -131,7 +128,7 @@ rubyforge_project:
131
128
  rubygems_version: 1.3.7
132
129
  signing_key:
133
130
  specification_version: 3
134
- summary: aruba-0.3.2
131
+ summary: aruba-0.3.3
135
132
  test_files:
136
133
  - features/exit_statuses.feature
137
134
  - features/file_system_commands.feature
@@ -1,2 +0,0 @@
1
- ---
2
- BUNDLE_DISABLE_SHARED_GEMS: "1"