billy-test 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
+ SHA256:
3
+ metadata.gz: 902acd41916c5c469b5ddf58f9c47118def64f250cc914358e3d7e2f094a85f5
4
+ data.tar.gz: 9eded7cfbbb1c4c18504548c6d54741b980c434b7d9257641114556781b9eba0
5
+ SHA512:
6
+ metadata.gz: cbe53116323f12afae23052c525f724fbd81cb2b6f87765668d3b67ca4cf92f2b21124d36dd28ce7bd9bfb4dee30962714ad3b59d0718d5fb7476703295dea19
7
+ data.tar.gz: b243ae8b3864000442caaa47b0c0788f850c84c6fead481d8babc6edfe399cf7d11fe1ae11511a440263cfffa3e46886847957201ca8439e991596a1a43d1c84
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in billy.gemspec
4
+ gemspec
@@ -0,0 +1,35 @@
1
+ # Billy
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/billy`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'billy'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install billy
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. 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 https://github.com/[USERNAME]/billy.
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/billy/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Homer Bacanto"]
6
+ gem.email = ["homer.bacanto@g.msuiit.edu.ph"]
7
+ gem.description = %q{Billy Testing CLI}
8
+ gem.summary = %q{CLI for Automated Testing}
9
+ gem.homepage = ""
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = ["billy"]
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "billy-test"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = Billy::VERSION
17
+
18
+ gem.add_runtime_dependency "thor"
19
+ end
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'billy'
4
+
5
+ billy = Billy::Testing
6
+
7
+ billy.start
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "billy"
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(__FILE__)
@@ -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,15 @@
1
+ require "billy/version"
2
+
3
+ require "thor"
4
+ require "cucumber"
5
+
6
+ module Billy
7
+ class Testing < Thor
8
+ desc "INSTRUCTION", "You must be in the billy directory for scripts to work"
9
+ desc "login", "Runs the Billing login-logout script"
10
+
11
+ def login()
12
+ system 'cd src/testscripts/login-logout && cucumber'
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,3 @@
1
+ module Billy
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,67 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: billy-test
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Homer Bacanto
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-07-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: Billy Testing CLI
28
+ email:
29
+ - homer.bacanto@g.msuiit.edu.ph
30
+ executables:
31
+ - billy
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - ".gitignore"
36
+ - Gemfile
37
+ - README.md
38
+ - Rakefile
39
+ - billy.gemspec
40
+ - bin/billy
41
+ - bin/console
42
+ - bin/setup
43
+ - lib/billy.rb
44
+ - lib/billy/version.rb
45
+ homepage: ''
46
+ licenses: []
47
+ metadata: {}
48
+ post_install_message:
49
+ rdoc_options: []
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ requirements: []
63
+ rubygems_version: 3.0.4
64
+ signing_key:
65
+ specification_version: 4
66
+ summary: CLI for Automated Testing
67
+ test_files: []