aruba 0.14.7 → 0.14.8
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/.rubocop.yml +3 -0
- data/Gemfile +8 -0
- data/History.md +9 -0
- data/README.md +0 -1
- data/Rakefile +4 -3
- data/aruba.gemspec +1 -1
- data/features/api/command/find_command.feature +5 -5
- data/features/api/command/last_command_started.feature +3 -3
- data/features/api/command/last_command_stopped.feature +6 -6
- data/features/api/command/run.feature +22 -22
- data/features/api/command/run_simple.feature +12 -12
- data/features/api/command/send_signal.feature +2 -2
- data/features/api/command/stderr.feature +2 -2
- data/features/api/command/stdout.feature +2 -2
- data/features/api/command/stop.feature +4 -4
- data/features/api/command/stop_all_commands.feature +5 -5
- data/features/api/command/terminate_all_commands.feature +5 -5
- data/features/api/environment/append_environment_variable.feature +5 -5
- data/features/api/environment/delete_environment_variable.feature +3 -3
- data/features/api/environment/prepend_environment_variable.feature +6 -6
- data/features/api/environment/set_environment_variable.feature +15 -15
- data/features/api/filesystem/cd.feature +2 -2
- data/features/api/text/extract_text.feature +4 -4
- data/features/api/text/replace_variables.feature +1 -1
- data/features/api/text/sanitize_text.feature +11 -11
- data/features/api/text/unescape_text.feature +6 -6
- data/features/configuration/command_runtime_environment.feature +5 -5
- data/features/configuration/usage.feature +5 -5
- data/features/hooks/after/command.feature +1 -1
- data/features/hooks/before/command.feature +2 -2
- data/features/matchers/timeouts.feature +2 -2
- data/features/step_definitions/aruba_dev_steps.rb +1 -1
- data/lib/aruba/api.rb +1 -1
- data/lib/aruba/api/{command.rb → commands.rb} +10 -9
- data/lib/aruba/api/deprecated.rb +65 -7
- data/lib/aruba/api/rvm.rb +3 -3
- data/lib/aruba/basic_configuration.rb +0 -2
- data/lib/aruba/config.rb +0 -1
- data/lib/aruba/console.rb +0 -2
- data/lib/aruba/cucumber/command.rb +6 -6
- data/lib/aruba/generators/script_file.rb +1 -1
- data/lib/aruba/matchers/deprecated/file.rb +3 -1
- data/lib/aruba/platforms/command_monitor.rb +0 -5
- data/lib/aruba/platforms/unix_environment_variables.rb +1 -3
- data/lib/aruba/platforms/unix_which.rb +0 -4
- data/lib/aruba/platforms/windows_which.rb +0 -4
- data/lib/aruba/processes/basic_process.rb +1 -0
- data/lib/aruba/processes/spawn_process.rb +1 -3
- data/lib/aruba/runtime.rb +4 -3
- data/lib/aruba/version.rb +1 -1
- data/spec/aruba/api/deprecated_spec.rb +5 -5
- data/spec/aruba/api_spec.rb +7 -7
- data/spec/aruba/matchers/command_spec.rb +18 -18
- data/spec/aruba/matchers/deprecated_spec.rb +1 -2
- data/spec/aruba/matchers/file_spec.rb +1 -2
- data/spec/event_bus_spec.rb +0 -2
- metadata +6 -6
@@ -1,10 +1,12 @@
|
|
1
1
|
module RSpec
|
2
2
|
module Matchers
|
3
|
+
# rubocop:disable Style/PredicateName
|
3
4
|
def have_same_file_content_like(expected)
|
4
5
|
RSpec.deprecate('`have_same_file_content_like`', :replacement => '`have_same_file_content_as`')
|
5
6
|
|
6
7
|
have_same_file_content_as(expected)
|
7
8
|
end
|
9
|
+
# rubocop:enable Style/PredicateName
|
8
10
|
|
9
11
|
def a_file_with_same_content_like(expected)
|
10
12
|
RSpec.deprecate('`a_file_with_same_content_like`', :replacement => '`a_file_with_same_content_as`')
|
@@ -12,4 +14,4 @@ module RSpec
|
|
12
14
|
a_file_with_same_content_as(expected)
|
13
15
|
end
|
14
16
|
end
|
15
|
-
end
|
17
|
+
end
|
@@ -34,7 +34,6 @@ module Aruba
|
|
34
34
|
end
|
35
35
|
end
|
36
36
|
|
37
|
-
# rubocop:disable Metrics/MethodLength
|
38
37
|
def initialize(opts = {})
|
39
38
|
@registered_commands = []
|
40
39
|
@announcer = opts.fetch(:announcer)
|
@@ -135,9 +134,7 @@ module Aruba
|
|
135
134
|
registered_commands.each(&:stop)
|
136
135
|
|
137
136
|
if RUBY_VERSION < '1.9.3'
|
138
|
-
# rubocop:disable Style/EachWithObject
|
139
137
|
registered_commands.inject("") { |a, e| a << e.stdout; a }
|
140
|
-
# rubocop:enable Style/EachWithObject
|
141
138
|
else
|
142
139
|
registered_commands.each_with_object("") { |e, a| a << e.stdout }
|
143
140
|
end
|
@@ -152,9 +149,7 @@ module Aruba
|
|
152
149
|
registered_commands.each(&:stop)
|
153
150
|
|
154
151
|
if RUBY_VERSION < '1.9.3'
|
155
|
-
# rubocop:disable Style/EachWithObject
|
156
152
|
registered_commands.inject("") { |a, e| a << e.stderr; a }
|
157
|
-
# rubocop:enable Style/EachWithObject
|
158
153
|
else
|
159
154
|
registered_commands.each_with_object("") { |e, a| a << e.stderr }
|
160
155
|
end
|
@@ -14,7 +14,7 @@ module Aruba
|
|
14
14
|
@other_env = if RUBY_VERSION <= '1.9.3'
|
15
15
|
# rubocop:disable Style/EachWithObject
|
16
16
|
@other_env.to_hash.inject({}) { |a, (k, v)| a[k] = v.to_s; a }
|
17
|
-
|
17
|
+
# rubocop:enable Style/EachWithObject
|
18
18
|
else
|
19
19
|
@other_env.to_h.each_with_object({}) { |(k, v), a| a[k] = v.to_s }
|
20
20
|
end
|
@@ -208,9 +208,7 @@ module Aruba
|
|
208
208
|
|
209
209
|
def prepared_environment
|
210
210
|
if RUBY_VERSION <= '1.9.3'
|
211
|
-
# rubocop:disable Style/EachWithObject
|
212
211
|
actions.inject(ENV.to_hash.merge(env)) { |a, e| e.call(a) }
|
213
|
-
# rubocop:enable Style/EachWithObject
|
214
212
|
else
|
215
213
|
actions.each_with_object(ENV.to_hash.merge(env)) { |e, a| a = e.call(a) }
|
216
214
|
end
|
@@ -36,8 +36,6 @@ module Aruba
|
|
36
36
|
Aruba.platform.command?(program)
|
37
37
|
end
|
38
38
|
|
39
|
-
# rubocop:disable Metrics/CyclomaticComplexity
|
40
|
-
# rubocop:disable Metrics/MethodLength
|
41
39
|
def call(program, path)
|
42
40
|
# Iterate over each path glob the dir + program.
|
43
41
|
path.split(File::PATH_SEPARATOR).each do |dir|
|
@@ -50,8 +48,6 @@ module Aruba
|
|
50
48
|
|
51
49
|
nil
|
52
50
|
end
|
53
|
-
# rubocop:enable Metrics/CyclomaticComplexity
|
54
|
-
# rubocop:enable Metrics/MethodLength
|
55
51
|
end
|
56
52
|
|
57
53
|
private
|
@@ -38,8 +38,6 @@ module Aruba
|
|
38
38
|
Aruba.platform.command?(program)
|
39
39
|
end
|
40
40
|
|
41
|
-
# rubocop:disable Metrics/CyclomaticComplexity
|
42
|
-
# rubocop:disable Metrics/MethodLength
|
43
41
|
def call(program, path)
|
44
42
|
# Iterate over each path glob the dir + program.
|
45
43
|
path.split(File::PATH_SEPARATOR).each do |dir|
|
@@ -63,8 +61,6 @@ module Aruba
|
|
63
61
|
|
64
62
|
nil
|
65
63
|
end
|
66
|
-
# rubocop:enable Metrics/CyclomaticComplexity
|
67
|
-
# rubocop:enable Metrics/MethodLength
|
68
64
|
end
|
69
65
|
|
70
66
|
private
|
@@ -93,7 +93,7 @@ module Aruba
|
|
93
93
|
|
94
94
|
yield self if block_given?
|
95
95
|
end
|
96
|
-
# rubocop:
|
96
|
+
# rubocop:enable Metrics/MethodLength
|
97
97
|
|
98
98
|
# Access to stdin of process
|
99
99
|
def stdin
|
@@ -256,9 +256,7 @@ module Aruba
|
|
256
256
|
# gather fully qualified path
|
257
257
|
cmd = Aruba.platform.which(command, environment['PATH'])
|
258
258
|
|
259
|
-
# rubocop:disable Metrics/LineLength
|
260
259
|
fail LaunchError, %(Command "#{command}" not found in PATH-variable "#{environment['PATH']}".) if cmd.nil?
|
261
|
-
# rubocop:enable Metrics/LineLength
|
262
260
|
|
263
261
|
Aruba.platform.command_string.new(cmd)
|
264
262
|
end
|
data/lib/aruba/runtime.rb
CHANGED
@@ -81,11 +81,12 @@ module Aruba
|
|
81
81
|
# @return [ArubaPath]
|
82
82
|
# The directory to where your fixtures are stored
|
83
83
|
def fixtures_directory
|
84
|
-
|
84
|
+
@fixtures_directory ||= begin
|
85
85
|
candidates = config.fixtures_directories.map { |dir| File.join(root_directory, dir) }
|
86
|
-
|
86
|
+
directory = candidates.find { |d| Aruba.platform.directory? d }
|
87
87
|
|
88
|
-
fail "No existing fixtures directory found in #{candidates.map { |d| format('"%s"', d) }.join(', ')}.
|
88
|
+
fail "No existing fixtures directory found in #{candidates.map { |d| format('"%s"', d) }.join(', ')}." unless directory
|
89
|
+
directory
|
89
90
|
end
|
90
91
|
|
91
92
|
fail %(Fixtures directory "#{@fixtures_directory}" is not a directory) unless Aruba.platform.directory?(@fixtures_directory)
|
data/lib/aruba/version.rb
CHANGED
@@ -54,7 +54,7 @@ RSpec.describe 'Deprecated API' do
|
|
54
54
|
end
|
55
55
|
|
56
56
|
context 'and permissions are given as octal number' do
|
57
|
-
let(:permissions) {
|
57
|
+
let(:permissions) { 0o655 }
|
58
58
|
it { expect(actual_permissions).to eq('0655') }
|
59
59
|
end
|
60
60
|
|
@@ -93,7 +93,7 @@ RSpec.describe 'Deprecated API' do
|
|
93
93
|
end
|
94
94
|
|
95
95
|
context 'and permissions are given as octal number' do
|
96
|
-
let(:permissions) {
|
96
|
+
let(:permissions) { 0o666 }
|
97
97
|
|
98
98
|
it { @aruba.check_filesystem_permissions(permissions, file_name, true) }
|
99
99
|
end
|
@@ -107,7 +107,7 @@ RSpec.describe 'Deprecated API' do
|
|
107
107
|
end
|
108
108
|
|
109
109
|
context 'but fails because the permissions are different' do
|
110
|
-
let(:expected_permissions) {
|
110
|
+
let(:expected_permissions) { 0o666 }
|
111
111
|
|
112
112
|
it { expect { @aruba.check_filesystem_permissions(expected_permissions, file_name, true) }.to raise_error RSpec::Expectations::ExpectationNotMetError }
|
113
113
|
end
|
@@ -115,13 +115,13 @@ RSpec.describe 'Deprecated API' do
|
|
115
115
|
|
116
116
|
context 'and should not have permissions' do
|
117
117
|
context 'and succeeds when the difference is expected and permissions are different' do
|
118
|
-
let(:different_permissions) {
|
118
|
+
let(:different_permissions) { 0o666 }
|
119
119
|
|
120
120
|
it { @aruba.check_filesystem_permissions(different_permissions, file_name, false) }
|
121
121
|
end
|
122
122
|
|
123
123
|
context 'and fails because the permissions are the same although they should be different' do
|
124
|
-
let(:different_permissions) {
|
124
|
+
let(:different_permissions) { 0o655 }
|
125
125
|
|
126
126
|
it { expect { @aruba.check_filesystem_permissions(different_permissions, file_name, false) }.to raise_error RSpec::Expectations::ExpectationNotMetError }
|
127
127
|
end
|
data/spec/aruba/api_spec.rb
CHANGED
@@ -778,7 +778,7 @@ describe Aruba::Api do
|
|
778
778
|
end
|
779
779
|
|
780
780
|
context 'and permissions are given as octal number' do
|
781
|
-
let(:permissions) {
|
781
|
+
let(:permissions) { 0o655 }
|
782
782
|
it { expect(actual_permissions).to eq('0655') }
|
783
783
|
end
|
784
784
|
|
@@ -864,7 +864,7 @@ describe Aruba::Api do
|
|
864
864
|
end
|
865
865
|
|
866
866
|
it "should announce to stdout exactly once" do
|
867
|
-
@aruba.
|
867
|
+
@aruba.run_command_and_stop('echo "hello world"')
|
868
868
|
expect(@aruba.last_command_started.output).to include('hello world')
|
869
869
|
end
|
870
870
|
end
|
@@ -872,7 +872,7 @@ describe Aruba::Api do
|
|
872
872
|
context 'disabled' do
|
873
873
|
it "should not announce to stdout" do
|
874
874
|
result = capture(:stdout) do
|
875
|
-
@aruba.
|
875
|
+
@aruba.run_command_and_stop('echo "hello world"')
|
876
876
|
end
|
877
877
|
|
878
878
|
expect(result).not_to include('hello world')
|
@@ -882,8 +882,8 @@ describe Aruba::Api do
|
|
882
882
|
end
|
883
883
|
end
|
884
884
|
|
885
|
-
describe '#
|
886
|
-
before(:each){ @aruba.
|
885
|
+
describe '#run_command' do
|
886
|
+
before(:each){ @aruba.run_command 'cat' }
|
887
887
|
after(:each) { @aruba.all_commands.each(&:stop) }
|
888
888
|
|
889
889
|
it "respond to input" do
|
@@ -927,7 +927,7 @@ describe Aruba::Api do
|
|
927
927
|
|
928
928
|
it "set environment variable" do
|
929
929
|
@aruba.set_environment_variable 'LONG_LONG_ENV_VARIABLE', 'true'
|
930
|
-
@aruba.
|
930
|
+
@aruba.run_command_and_stop "env"
|
931
931
|
expect(@aruba.last_command_started.output).
|
932
932
|
to include("LONG_LONG_ENV_VARIABLE=true")
|
933
933
|
end
|
@@ -935,7 +935,7 @@ describe Aruba::Api do
|
|
935
935
|
it "overwrites environment variable" do
|
936
936
|
@aruba.set_environment_variable 'LONG_LONG_ENV_VARIABLE', 'true'
|
937
937
|
@aruba.set_environment_variable 'LONG_LONG_ENV_VARIABLE', 'false'
|
938
|
-
@aruba.
|
938
|
+
@aruba.run_command_and_stop "env"
|
939
939
|
expect(@aruba.last_command_started.output).
|
940
940
|
to include("LONG_LONG_ENV_VARIABLE=false")
|
941
941
|
end
|
@@ -14,7 +14,7 @@ RSpec.describe 'Command Matchers' do
|
|
14
14
|
describe '#to_have_exit_status' do
|
15
15
|
let(:cmd) { 'true' }
|
16
16
|
|
17
|
-
before(:each) {
|
17
|
+
before(:each) { run_command(cmd) }
|
18
18
|
|
19
19
|
context 'when has exit 0' do
|
20
20
|
it { expect(last_command_started).to have_exit_status 0 }
|
@@ -29,7 +29,7 @@ RSpec.describe 'Command Matchers' do
|
|
29
29
|
describe '#to_be_successfully_executed_' do
|
30
30
|
let(:cmd) { 'true' }
|
31
31
|
|
32
|
-
before(:each) {
|
32
|
+
before(:each) { run_command(cmd) }
|
33
33
|
|
34
34
|
context 'when has exit 0' do
|
35
35
|
it { expect(last_command_started).to be_successfully_executed }
|
@@ -46,15 +46,15 @@ RSpec.describe 'Command Matchers' do
|
|
46
46
|
let(:output) { 'hello world' }
|
47
47
|
|
48
48
|
context 'when have output hello world on stdout' do
|
49
|
-
before(:each) {
|
49
|
+
before(:each) { run_command(cmd) }
|
50
50
|
it { expect(last_command_started).to have_output output }
|
51
51
|
end
|
52
52
|
|
53
53
|
context 'when multiple commands output hello world on stdout' do
|
54
54
|
context 'and all comands must have the output' do
|
55
55
|
before(:each) do
|
56
|
-
|
57
|
-
|
56
|
+
run_command(cmd)
|
57
|
+
run_command(cmd)
|
58
58
|
end
|
59
59
|
|
60
60
|
it { expect(all_commands).to all have_output output }
|
@@ -62,8 +62,8 @@ RSpec.describe 'Command Matchers' do
|
|
62
62
|
|
63
63
|
context 'and any comand can have the output' do
|
64
64
|
before(:each) do
|
65
|
-
|
66
|
-
|
65
|
+
run_command(cmd)
|
66
|
+
run_command('echo hello universe')
|
67
67
|
end
|
68
68
|
|
69
69
|
it { expect(all_commands).to include have_output(output) }
|
@@ -80,19 +80,19 @@ RSpec.describe 'Command Matchers' do
|
|
80
80
|
|
81
81
|
File.open(expand_path('cmd.sh'), 'w') { |f| f.puts string }
|
82
82
|
|
83
|
-
File.chmod
|
83
|
+
File.chmod 0o755, expand_path('cmd.sh')
|
84
84
|
prepend_environment_variable 'PATH', "#{expand_path('.')}#{File::PATH_SEPARATOR}"
|
85
85
|
end
|
86
86
|
|
87
87
|
let(:cmd) { "cmd.sh #{output}" }
|
88
88
|
|
89
|
-
before(:each) {
|
89
|
+
before(:each) { run_command(cmd) }
|
90
90
|
|
91
91
|
it { expect(last_command_started).to have_output output }
|
92
92
|
end
|
93
93
|
|
94
94
|
context 'when not has output' do
|
95
|
-
before(:each) {
|
95
|
+
before(:each) { run_command(cmd) }
|
96
96
|
|
97
97
|
it { expect(last_command_started).not_to have_output 'hello universe' }
|
98
98
|
end
|
@@ -103,7 +103,7 @@ RSpec.describe 'Command Matchers' do
|
|
103
103
|
let(:output) { 'hello world' }
|
104
104
|
|
105
105
|
context 'when have output hello world on stdout' do
|
106
|
-
before(:each) {
|
106
|
+
before(:each) { run_command(cmd) }
|
107
107
|
it { expect(last_command_started).to have_output_on_stdout output }
|
108
108
|
end
|
109
109
|
|
@@ -117,19 +117,19 @@ RSpec.describe 'Command Matchers' do
|
|
117
117
|
|
118
118
|
File.open(expand_path('cmd.sh'), 'w') { |f| f.puts string }
|
119
119
|
|
120
|
-
File.chmod
|
120
|
+
File.chmod 0o755, expand_path('cmd.sh')
|
121
121
|
prepend_environment_variable 'PATH', "#{expand_path('.')}#{File::PATH_SEPARATOR}"
|
122
122
|
end
|
123
123
|
|
124
124
|
let(:cmd) { "cmd.sh #{output}" }
|
125
125
|
|
126
|
-
before(:each) {
|
126
|
+
before(:each) { run_command(cmd) }
|
127
127
|
|
128
128
|
it { expect(last_command_started).not_to have_output_on_stdout output }
|
129
129
|
end
|
130
130
|
|
131
131
|
context 'when not has output' do
|
132
|
-
before(:each) {
|
132
|
+
before(:each) { run_command(cmd) }
|
133
133
|
|
134
134
|
it { expect(last_command_started).not_to have_output_on_stdout 'hello universe' }
|
135
135
|
end
|
@@ -140,7 +140,7 @@ RSpec.describe 'Command Matchers' do
|
|
140
140
|
let(:output) { 'hello world' }
|
141
141
|
|
142
142
|
context 'when have output hello world on stdout' do
|
143
|
-
before(:each) {
|
143
|
+
before(:each) { run_command(cmd) }
|
144
144
|
it { expect(last_command_started).not_to have_output_on_stderr output }
|
145
145
|
end
|
146
146
|
|
@@ -154,19 +154,19 @@ RSpec.describe 'Command Matchers' do
|
|
154
154
|
|
155
155
|
File.open(expand_path('cmd.sh'), 'w') { |f| f.puts string }
|
156
156
|
|
157
|
-
File.chmod
|
157
|
+
File.chmod 0o755, expand_path('cmd.sh')
|
158
158
|
prepend_environment_variable 'PATH', "#{expand_path('.')}#{File::PATH_SEPARATOR}"
|
159
159
|
end
|
160
160
|
|
161
161
|
let(:cmd) { "cmd.sh #{output}" }
|
162
162
|
|
163
|
-
before(:each) {
|
163
|
+
before(:each) { run_command(cmd) }
|
164
164
|
|
165
165
|
it { expect(last_command_started).to have_output_on_stderr output }
|
166
166
|
end
|
167
167
|
|
168
168
|
context 'when not has output' do
|
169
|
-
before(:each) {
|
169
|
+
before(:each) { run_command(cmd) }
|
170
170
|
|
171
171
|
it { expect(last_command_started).not_to have_output_on_stderr 'hello universe' }
|
172
172
|
end
|
@@ -88,7 +88,7 @@ RSpec.describe 'Deprecated matchers' do
|
|
88
88
|
@aruba.write_file(reference_file, reference_file_content)
|
89
89
|
@aruba.write_file(file_with_different_content, 'Some different content here...')
|
90
90
|
end
|
91
|
-
|
91
|
+
|
92
92
|
context 'when the array of files includes a file with the same content' do
|
93
93
|
let(:files) { [file_with_different_content, file_with_same_content] }
|
94
94
|
|
@@ -101,7 +101,6 @@ RSpec.describe 'Deprecated matchers' do
|
|
101
101
|
expect { expect(files).not_to include a_file_with_same_content_like reference_file }.to raise_error RSpec::Expectations::ExpectationNotMetError
|
102
102
|
end
|
103
103
|
end
|
104
|
-
|
105
104
|
end
|
106
105
|
|
107
106
|
context 'when the array of files does not include a file with the same content' do
|
@@ -176,7 +176,7 @@ RSpec.describe 'File Matchers' do
|
|
176
176
|
@aruba.write_file(reference_file, reference_file_content)
|
177
177
|
@aruba.write_file(file_with_different_content, 'Some different content here...')
|
178
178
|
end
|
179
|
-
|
179
|
+
|
180
180
|
context 'when the array of files includes a file with the same content' do
|
181
181
|
let(:files) { [file_with_different_content, file_with_same_content] }
|
182
182
|
|
@@ -189,7 +189,6 @@ RSpec.describe 'File Matchers' do
|
|
189
189
|
expect { expect(files).not_to include a_file_with_same_content_as reference_file }
|
190
190
|
end
|
191
191
|
end
|
192
|
-
|
193
192
|
end
|
194
193
|
|
195
194
|
context 'when the array of files does not include a file with the same content' do
|
data/spec/event_bus_spec.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
require 'aruba/event_bus'
|
2
2
|
|
3
|
-
# rubocop:disable Style/Documentation
|
4
3
|
module Events
|
5
4
|
class TestEvent; end
|
6
5
|
class AnotherTestEvent; end
|
@@ -12,7 +11,6 @@ class MyHandler
|
|
12
11
|
end
|
13
12
|
|
14
13
|
class MyMalformedHandler; end
|
15
|
-
# rubocop:enable Style/Documentation
|
16
14
|
|
17
15
|
describe Aruba::EventBus do
|
18
16
|
subject(:bus) { described_class.new(name_resolver) }
|
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.14.
|
4
|
+
version: 0.14.8
|
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: 2019-
|
16
|
+
date: 2019-02-02 00:00:00.000000000 Z
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
19
19
|
name: cucumber
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
version: 0.6.3
|
39
39
|
- - "<"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version:
|
41
|
+
version: 1.1.0
|
42
42
|
type: :runtime
|
43
43
|
prerelease: false
|
44
44
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -48,7 +48,7 @@ dependencies:
|
|
48
48
|
version: 0.6.3
|
49
49
|
- - "<"
|
50
50
|
- !ruby/object:Gem::Version
|
51
|
-
version:
|
51
|
+
version: 1.1.0
|
52
52
|
- !ruby/object:Gem::Dependency
|
53
53
|
name: ffi
|
54
54
|
requirement: !ruby/object:Gem::Requirement
|
@@ -295,7 +295,7 @@ files:
|
|
295
295
|
- lib/aruba.rb
|
296
296
|
- lib/aruba/api.rb
|
297
297
|
- lib/aruba/api/bundler.rb
|
298
|
-
- lib/aruba/api/
|
298
|
+
- lib/aruba/api/commands.rb
|
299
299
|
- lib/aruba/api/core.rb
|
300
300
|
- lib/aruba/api/deprecated.rb
|
301
301
|
- lib/aruba/api/environment.rb
|
@@ -493,5 +493,5 @@ requirements: []
|
|
493
493
|
rubygems_version: 3.0.1
|
494
494
|
signing_key:
|
495
495
|
specification_version: 4
|
496
|
-
summary: aruba-0.14.
|
496
|
+
summary: aruba-0.14.8
|
497
497
|
test_files: []
|