aruba-contrib 0.1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6b2cee20565bb68ab5830793f262fd6b9204adf9
4
+ data.tar.gz: 0b6b300c2982d42ca637393413ccc646cdf83ade
5
+ SHA512:
6
+ metadata.gz: 1b06010c46cbde203b18724f1a23df138b4dfe3557d379647053a12351a6eb217bb5e72fecf1fbd2d80a38df9beb751543002a0d41f0539e1e1bcd187237347b
7
+ data.tar.gz: 234ae0ef6fa3e84d45e9c2f41e1a011dde6eb2f35623707c875bd51e960489bbb42887a89ff0fe50b1d2ae0fc38399761cf68c02863991d7f70a0b842a0905b4
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.0
4
+ before_install: gem install bundler -v 1.11.2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in aruba-contrib.gemspec
4
+ gemspec
@@ -0,0 +1,37 @@
1
+ # Aruba-Contrib
2
+
3
+ This gem bundle contributions which are not part of `aruba`-core for various
4
+ reasons. In most cases it's helpful code, which is out of `aruba`'s scope.
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'aruba-contrib'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install aruba-contrib
21
+
22
+ ## Usage
23
+
24
+ * [RVM](features/rvm.feature)[features/rvm.feature]
25
+
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at
36
+ https://github.com/cucumber/aruba-contrib.
37
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'aruba/contrib/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'aruba-contrib'
8
+ spec.version = Aruba::Contrib::VERSION
9
+ spec.authors = ['Dennis Günnewig']
10
+ spec.email = ['dev@fedux.org']
11
+
12
+ spec.summary = %q{Additional steps/API methods for 'aruba'}
13
+ spec.description = %q{This gem contains all steps/API methods which might be valueable for the 'aruba'-community, but should be not part of 'aruba'-core}
14
+ spec.homepage = 'https://github.com/cucumber/aruba-contrib'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = 'exe'
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.11'
22
+ spec.add_development_dependency 'rake', '~> 10.0'
23
+ spec.add_development_dependency 'rspec', '~> 3.0'
24
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "aruba/contrib"
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
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,7 @@
1
+ require "aruba/contrib/version"
2
+
3
+ module Aruba
4
+ module Contrib
5
+ # Your code goes here...
6
+ end
7
+ end
@@ -0,0 +1,17 @@
1
+ require 'aruba/contrib/rvm/api'
2
+
3
+ # Aruba
4
+ module Aruba
5
+ # Contrib
6
+ module Contrib
7
+ # This adds rvm helpers to aruba
8
+ module Rvm
9
+ end
10
+ end
11
+ end
12
+
13
+ module Aruba
14
+ module Api
15
+ include Aruba::Contrib::Rvm
16
+ end
17
+ end
@@ -0,0 +1,5 @@
1
+ module Aruba
2
+ module Contrib
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aruba-contrib
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Dennis Günnewig
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-03-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: This gem contains all steps/API methods which might be valueable for
56
+ the 'aruba'-community, but should be not part of 'aruba'-core
57
+ email:
58
+ - dev@fedux.org
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".rspec"
65
+ - ".travis.yml"
66
+ - Gemfile
67
+ - README.md
68
+ - Rakefile
69
+ - aruba-contrib.gemspec
70
+ - bin/console
71
+ - bin/setup
72
+ - lib/aruba/contrib.rb
73
+ - lib/aruba/contrib/rvm.rb
74
+ - lib/aruba/contrib/version.rb
75
+ homepage: https://github.com/cucumber/aruba-contrib
76
+ licenses: []
77
+ metadata: {}
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubyforge_project:
94
+ rubygems_version: 2.5.1
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Additional steps/API methods for 'aruba'
98
+ test_files: []
99
+ has_rdoc: