aruba 0.14.1 → 0.14.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +7 -5
- data/features/development/build.feature +5 -6
- data/lib/aruba/config/jruby.rb +3 -3
- data/lib/aruba/version.rb +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f83f6a317a039d5d392c8c8d7ab294c482120d51
|
4
|
+
data.tar.gz: 080fda83821e31910ad169685d0c65713ca4ea2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90cd237f159cc8679d9a3e4e43a758959892e55fa2c099decefc6cbdd8cc0acae3b0fe54d19325bc8ac50430eaa80d1f8d19f51376f340ba74ed76fd1436ea9d
|
7
|
+
data.tar.gz: fbc8e31a727d7ce1a59072bdfa21fbd5ab0994db40a824610946c47fe9d95c66f91c892679745084f45f000dccad04bb8c84df1f955deb6d16ec78f1745c2580
|
data/Gemfile
CHANGED
@@ -55,7 +55,7 @@ group :development, :test do
|
|
55
55
|
|
56
56
|
if RUBY_VERSION >= '1.9.3'
|
57
57
|
# Make aruba compliant to ruby community guide
|
58
|
-
gem 'rubocop', '~> 0.32'
|
58
|
+
gem 'rubocop', '~> 0.32', '< 0.41.1'
|
59
59
|
end
|
60
60
|
|
61
61
|
if RUBY_VERSION >= '1.9.3'
|
@@ -67,12 +67,14 @@ group :development, :test do
|
|
67
67
|
gem 'license_finder', '~> 2.0.4'
|
68
68
|
end
|
69
69
|
|
70
|
-
if RUBY_VERSION >= '1.9.3'
|
71
|
-
|
72
|
-
|
73
|
-
end
|
70
|
+
# if RUBY_VERSION >= '1.9.3'
|
71
|
+
# # Upload documentation
|
72
|
+
# gem 'relish', '~> 0.7.1'
|
73
|
+
# end
|
74
74
|
|
75
75
|
gem 'minitest', '~> 5.8.0'
|
76
|
+
|
77
|
+
gem 'json', '~> 1.8'
|
76
78
|
end
|
77
79
|
|
78
80
|
platforms :rbx do
|
@@ -4,13 +4,12 @@ Feature: Build Aruba Gem
|
|
4
4
|
I want to build the `aruba` gem
|
5
5
|
In order to install it
|
6
6
|
|
7
|
-
Background:
|
8
|
-
Given I successfully run `git clone https://github.com/cucumber/aruba.git`
|
9
|
-
And I cd to "aruba"
|
10
|
-
|
11
7
|
Scenario: Building aruba using rake task
|
12
8
|
|
13
9
|
To build the `aruba`-gem you can use the `build`-rake task.
|
14
10
|
|
15
|
-
Given I successfully run `rake build`
|
16
|
-
Then
|
11
|
+
Given I successfully run `rake -T build`
|
12
|
+
Then the output should contain:
|
13
|
+
"""
|
14
|
+
build
|
15
|
+
"""
|
data/lib/aruba/config/jruby.rb
CHANGED
@@ -6,12 +6,12 @@ Aruba.configure do |config|
|
|
6
6
|
next unless RUBY_PLATFORM == 'java'
|
7
7
|
|
8
8
|
# disable JIT since these processes are so short lived
|
9
|
-
ENV['JRUBY_OPTS'] = "-X-C #{ENV['JRUBY_OPTS']}" unless ENV['JRUBY_OPTS'].include? '-X-C'
|
9
|
+
ENV['JRUBY_OPTS'] = "-X-C #{ENV['JRUBY_OPTS']}" unless (ENV['JRUBY_OPTS'] || '') .include? '-X-C'
|
10
10
|
|
11
11
|
# Faster startup for jruby
|
12
|
-
ENV['JRUBY_OPTS'] = "--dev #{ENV['JRUBY_OPTS']}" unless ENV['JRUBY_OPTS'].include? '--dev'
|
12
|
+
ENV['JRUBY_OPTS'] = "--dev #{ENV['JRUBY_OPTS']}" unless (ENV['JRUBY_OPTS'] || '').include? '--dev'
|
13
13
|
|
14
14
|
# force jRuby to use client JVM for faster startup times
|
15
|
-
ENV['JAVA_OPTS'] = "-d32 #{ENV['JAVA_OPTS']}" if RbConfig::CONFIG['host_os'] =~ /solaris|sunos/i && !ENV['JAVA_OPTS'].include?('-d32')
|
15
|
+
ENV['JAVA_OPTS'] = "-d32 #{ENV['JAVA_OPTS']}" if RbConfig::CONFIG['host_os'] =~ /solaris|sunos/i && !(ENV['JAVA_OPTS'] || '').include?('-d32')
|
16
16
|
end
|
17
17
|
end
|
data/lib/aruba/version.rb
CHANGED
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.2
|
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: 2016-
|
16
|
+
date: 2016-08-16 00:00:00.000000000 Z
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
19
19
|
name: cucumber
|
@@ -472,10 +472,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
472
472
|
version: '0'
|
473
473
|
requirements: []
|
474
474
|
rubyforge_project:
|
475
|
-
rubygems_version: 2.
|
475
|
+
rubygems_version: 2.6.3
|
476
476
|
signing_key:
|
477
477
|
specification_version: 4
|
478
|
-
summary: aruba-0.14.
|
478
|
+
summary: aruba-0.14.2
|
479
479
|
test_files:
|
480
480
|
- features/api/command/find_command.feature
|
481
481
|
- features/api/command/last_command_started.feature
|
@@ -628,4 +628,3 @@ test_files:
|
|
628
628
|
- spec/support/shared_examples/configuration.rb
|
629
629
|
- spec/support/shared_examples/directory.rb
|
630
630
|
- spec/support/shared_examples/file.rb
|
631
|
-
has_rdoc:
|