aruba 1.0.2 → 1.0.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.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -1
  3. data/lib/aruba/console/help.rb +3 -3
  4. data/lib/aruba/cucumber/command.rb +10 -18
  5. data/lib/aruba/matchers/base/message_indenter.rb +1 -1
  6. data/lib/aruba/matchers/path/have_permissions.rb +3 -2
  7. data/lib/aruba/platforms/announcer.rb +1 -1
  8. data/lib/aruba/platforms/command_monitor.rb +1 -3
  9. data/lib/aruba/processes/basic_process.rb +1 -1
  10. data/lib/aruba/version.rb +1 -1
  11. metadata +47 -62
  12. data/.cucumberproignore +0 -3
  13. data/.document +0 -5
  14. data/.github/ISSUE_TEMPLATE.md +0 -48
  15. data/.github/PULL_REQUEST_TEMPLATE.md +0 -41
  16. data/.gitignore +0 -38
  17. data/.rspec +0 -3
  18. data/.rubocop.yml +0 -52
  19. data/.rubocop_todo.yml +0 -216
  20. data/.simplecov +0 -36
  21. data/.travis.yml +0 -62
  22. data/.yardopts +0 -11
  23. data/Dockerfile +0 -67
  24. data/Gemfile +0 -14
  25. data/Rakefile +0 -82
  26. data/TODO.md +0 -13
  27. data/appveyor.yml +0 -28
  28. data/aruba.gemspec +0 -57
  29. data/bin/console +0 -7
  30. data/bin/test +0 -9
  31. data/config/.gitignore +0 -1
  32. data/cucumber.yml +0 -6
  33. data/docker-compose.yml +0 -26
  34. data/fixtures/cli-app/.gitignore +0 -9
  35. data/fixtures/cli-app/.rspec +0 -2
  36. data/fixtures/cli-app/README.md +0 -39
  37. data/fixtures/cli-app/Rakefile +0 -1
  38. data/fixtures/cli-app/bin/aruba-test-cli +0 -6
  39. data/fixtures/cli-app/cli-app.gemspec +0 -26
  40. data/fixtures/cli-app/features/support/aruba.rb +0 -1
  41. data/fixtures/cli-app/features/support/env.rb +0 -1
  42. data/fixtures/cli-app/lib/cli/app.rb +0 -9
  43. data/fixtures/cli-app/lib/cli/app/suppress_simple_cov_output.rb +0 -15
  44. data/fixtures/cli-app/lib/cli/app/version.rb +0 -5
  45. data/fixtures/cli-app/script/console +0 -14
  46. data/fixtures/cli-app/spec/spec_helper.rb +0 -8
  47. data/fixtures/cli-app/spec/support/aruba.rb +0 -1
  48. data/fixtures/copy/file.txt +0 -1
  49. data/fixtures/empty-app/.gitignore +0 -9
  50. data/fixtures/empty-app/.rspec +0 -2
  51. data/fixtures/empty-app/README.md +0 -24
  52. data/fixtures/empty-app/Rakefile +0 -1
  53. data/fixtures/empty-app/cli-app.gemspec +0 -26
  54. data/fixtures/empty-app/lib/cli/app.rb +0 -7
  55. data/fixtures/empty-app/lib/cli/app/version.rb +0 -5
  56. data/fixtures/getting-started-app/.gitignore +0 -4
  57. data/fixtures/getting-started-app/Gemfile +0 -4
  58. data/fixtures/getting-started-app/README.md +0 -3
  59. data/fixtures/getting-started-app/features/support/env.rb +0 -1
@@ -1,15 +0,0 @@
1
- module SimpleCov
2
- module Formatter
3
- class HTMLFormatter
4
- def format(result)
5
- Dir[File.join(File.dirname(__FILE__), '../public/*')].each do |path|
6
- FileUtils.cp_r(path, asset_output_path)
7
- end
8
-
9
- File.open(File.join(output_path, 'index.html'), 'wb') do |file|
10
- file.puts template('layout').result(binding)
11
- end
12
- end
13
- end
14
- end
15
- end
@@ -1,5 +0,0 @@
1
- module Cli
2
- module App
3
- VERSION = '0.1.0'.freeze
4
- end
5
- end
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'cli/app'
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require 'irb'
14
- IRB.start
@@ -1,8 +0,0 @@
1
- $LOAD_PATH.unshift File.expand_path('../lib', __dir__)
2
-
3
- require 'cli/app'
4
-
5
- require_relative 'support/aruba'
6
-
7
- ::Dir.glob(::File.expand_path('../support/**/*.rb', __FILE__))
8
- .each { |f| require_relative f }
@@ -1 +0,0 @@
1
- require 'aruba/rspec'
@@ -1 +0,0 @@
1
- a
@@ -1,9 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
@@ -1,2 +0,0 @@
1
- --format documentation
2
- --color
@@ -1,24 +0,0 @@
1
- # Empty Cli App
2
-
3
- This is a simple test cli app
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- ```ruby
10
- gem 'cli-app'
11
- ```
12
-
13
- And then execute:
14
-
15
- $ bundle
16
-
17
- Or install it yourself as:
18
-
19
- $ gem install cli-app
20
-
21
- ## Usage
22
-
23
- Place files in `lib/cli/app/`. They are loaded automatically. If you need a
24
- specific load order, use `require` in your files.
@@ -1 +0,0 @@
1
- require 'bundler/gem_tasks'
@@ -1,26 +0,0 @@
1
- lib = File.expand_path('lib', __dir__)
2
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require 'cli/app/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'cli-app'
7
- spec.version = Cli::App::VERSION
8
- spec.authors = ['Aruba Developers']
9
- spec.email = 'cukes@googlegroups.com'
10
-
11
- spec.summary = 'Summary'
12
- spec.description = 'Description'
13
- spec.homepage = 'http://example.com'
14
-
15
- # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
16
- # delete this section to allow pushing this gem to any host.
17
-
18
- spec.files = `git ls-files -z`.split("\x0")
19
- .reject { |f| f.match(%r{^(test|spec|features)/}) }
20
- spec.bindir = 'exe'
21
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
- spec.require_paths = ['lib']
23
-
24
- spec.add_development_dependency 'bundler', '~> 1.9'
25
- spec.add_development_dependency 'rake', '~> 13.0'
26
- end
@@ -1,7 +0,0 @@
1
- require 'cli/app/version'
2
-
3
- module Cli
4
- module App
5
- # Your code goes here...
6
- end
7
- end
@@ -1,5 +0,0 @@
1
- module Cli
2
- module App
3
- VERSION = '0.1.0'.freeze
4
- end
5
- end
@@ -1,4 +0,0 @@
1
- /coverage/
2
- /doc/
3
- /pkg/
4
- /tmp/
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'aruba', path: File.expand_path('../../..', __dir__)
4
- gem 'cucumber'
@@ -1,3 +0,0 @@
1
- # Simple Cli App
2
-
3
- This is a simple app to get started with `aruba`.
@@ -1 +0,0 @@
1
- require 'aruba/cucumber'