zephyr_cli 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6d235f2f31b01aec14489f13000096529c298e779053339dc8e6f32a26acd9f3
4
+ data.tar.gz: fe2aaaed9d9f4c15f145fcba25519558c34481f27a80515fda5b436d23f0c7be
5
+ SHA512:
6
+ metadata.gz: f25848195ce2ecbd577d87fe45c7ee5524e73f46b30fb0c1bd5775052ed8768ba9c11c1cbef53ddaa4eaafd28f5bab5e0c933bd908fe261a01464fdc5102406e
7
+ data.tar.gz: 28832cc18969f149a87d6c888ea6016e00f79422b42b51b3634484da4608d37f9b24e1e396aee1f3f234180212746921d4626eeaed2f832fa783f5bc95227783
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/.rubocop.yml ADDED
@@ -0,0 +1,10 @@
1
+ Style/StringLiterals:
2
+ Enabled: true
3
+ EnforcedStyle: double_quotes
4
+
5
+ Style/StringLiteralsInInterpolation:
6
+ Enabled: true
7
+ EnforcedStyle: double_quotes
8
+
9
+ Layout/LineLength:
10
+ Max: 120
data/CHANGELOG.txt ADDED
File without changes
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gem 'rake', '~> 13.0'
6
+ gem 'rubocop', '~> 0.80'
7
+ gem 'thor'
8
+ gem 'zephyr_ruby'
data/Gemfile.lock ADDED
@@ -0,0 +1,83 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ ast (2.4.2)
5
+ diff-lcs (1.5.1)
6
+ faraday (1.10.3)
7
+ faraday-em_http (~> 1.0)
8
+ faraday-em_synchrony (~> 1.0)
9
+ faraday-excon (~> 1.1)
10
+ faraday-httpclient (~> 1.0)
11
+ faraday-multipart (~> 1.0)
12
+ faraday-net_http (~> 1.0)
13
+ faraday-net_http_persistent (~> 1.0)
14
+ faraday-patron (~> 1.0)
15
+ faraday-rack (~> 1.0)
16
+ faraday-retry (~> 1.0)
17
+ ruby2_keywords (>= 0.0.4)
18
+ faraday-em_http (1.0.0)
19
+ faraday-em_synchrony (1.0.0)
20
+ faraday-excon (1.1.0)
21
+ faraday-httpclient (1.0.1)
22
+ faraday-multipart (1.0.4)
23
+ multipart-post (~> 2)
24
+ faraday-net_http (1.0.1)
25
+ faraday-net_http_persistent (1.2.0)
26
+ faraday-patron (1.0.0)
27
+ faraday-rack (1.0.0)
28
+ faraday-retry (1.0.3)
29
+ json (2.7.2)
30
+ multipart-post (2.4.0)
31
+ parallel (1.24.0)
32
+ parser (3.3.0.5)
33
+ ast (~> 2.4.1)
34
+ racc
35
+ racc (1.7.3)
36
+ rainbow (3.1.1)
37
+ rake (13.2.1)
38
+ regexp_parser (2.9.0)
39
+ rexml (3.2.6)
40
+ rspec (3.13.0)
41
+ rspec-core (~> 3.13.0)
42
+ rspec-expectations (~> 3.13.0)
43
+ rspec-mocks (~> 3.13.0)
44
+ rspec-core (3.13.0)
45
+ rspec-support (~> 3.13.0)
46
+ rspec-expectations (3.13.0)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.13.0)
49
+ rspec-mocks (3.13.0)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.13.0)
52
+ rspec-support (3.13.1)
53
+ rubocop (0.93.1)
54
+ parallel (~> 1.10)
55
+ parser (>= 2.7.1.5)
56
+ rainbow (>= 2.2.2, < 4.0)
57
+ regexp_parser (>= 1.8)
58
+ rexml
59
+ rubocop-ast (>= 0.6.0)
60
+ ruby-progressbar (~> 1.7)
61
+ unicode-display_width (>= 1.4.0, < 2.0)
62
+ rubocop-ast (1.31.2)
63
+ parser (>= 3.3.0.4)
64
+ ruby-progressbar (1.13.0)
65
+ ruby2_keywords (0.0.5)
66
+ thor (1.3.1)
67
+ unicode-display_width (1.8.0)
68
+ zephyr_ruby (0.4.0)
69
+ faraday (~> 1.7, >= 1.7.0)
70
+ json (~> 2.3, >= 2.3.0)
71
+ rspec (~> 3.7, >= 3.7.0)
72
+
73
+ PLATFORMS
74
+ arm64-darwin-22
75
+
76
+ DEPENDENCIES
77
+ rake (~> 13.0)
78
+ rubocop (~> 0.80)
79
+ thor
80
+ zephyr_ruby
81
+
82
+ BUNDLED WITH
83
+ 2.2.3
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # ZephyrCli
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/zephyr_cli`. 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 'zephyr_cli'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install zephyr_cli
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 the created tag, 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]/zephyr_cli.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rubocop/rake_task"
5
+
6
+ RuboCop::RakeTask.new
7
+
8
+ task default: :rubocop
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "zephyr_cli"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -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
+ # frozen_string_literal: true
2
+
3
+ require "zephyr_ruby"
4
+
5
+ module ZephyrClient
6
+ @client = ZephyrRuby::Client.new("YOUR_API_KEY")
7
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ class TestCases < Thor
4
+ desc "hello NAME", "say hello to NAME"
5
+ def hello(name)
6
+ puts "Hello #{name}"
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ class TestCycles < Thor
4
+ desc "hello NAME", "say hello to NAME"
5
+ def hello(name)
6
+ puts "Hello #{name}"
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ class TestPlans < Thor
4
+ desc "hello NAME", "say hello to NAME"
5
+ def hello(name)
6
+ puts "Hello #{name}"
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ZephyrCli
4
+ VERSION = "0.1.0"
5
+ end
data/lib/zephyr_cli.rb ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "zephyr_cli/version"
4
+
5
+ module ZephyrCli
6
+ class Error < StandardError; end
7
+
8
+ class MyCLI < Thor
9
+ desc "hello NAME", "say hello to NAME"
10
+ def hello(name)
11
+ puts "Hello #{name}"
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/zephyr_cli/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "zephyr_cli"
7
+ spec.version = ZephyrCli::VERSION
8
+ spec.authors = ["Chris Davis"]
9
+
10
+ spec.summary = "Zephyr CLI"
11
+ spec.description = "Zephyr CLI"
12
+ spec.homepage = "https://github.com/cdavis-personal/zephyr_cli"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
+
15
+ spec.metadata["homepage_uri"] = spec.homepage
16
+ spec.metadata["source_code_uri"] = spec.homepage
17
+ spec.metadata["changelog_uri"] = "#{spec.homepage}/CHANGELOG.txt"
18
+
19
+ # Specify which files should be added to the gem when it is released.
20
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
22
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
23
+ end
24
+ spec.bindir = "exe"
25
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
26
+ spec.require_paths = ["lib"]
27
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zephyr_cli
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Chris Davis
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-07-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Zephyr CLI
14
+ email:
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - ".gitignore"
20
+ - ".rubocop.yml"
21
+ - CHANGELOG.txt
22
+ - Gemfile
23
+ - Gemfile.lock
24
+ - README.md
25
+ - Rakefile
26
+ - bin/console
27
+ - bin/setup
28
+ - lib/zephyr_cli.rb
29
+ - lib/zephyr_cli/helpers/zephyr_client.rb
30
+ - lib/zephyr_cli/test_cases.rb
31
+ - lib/zephyr_cli/test_cycles.rb
32
+ - lib/zephyr_cli/test_plans.rb
33
+ - lib/zephyr_cli/version.rb
34
+ - zephyr_cli.gemspec
35
+ homepage: https://github.com/cdavis-personal/zephyr_cli
36
+ licenses: []
37
+ metadata:
38
+ homepage_uri: https://github.com/cdavis-personal/zephyr_cli
39
+ source_code_uri: https://github.com/cdavis-personal/zephyr_cli
40
+ changelog_uri: https://github.com/cdavis-personal/zephyr_cli/CHANGELOG.txt
41
+ post_install_message:
42
+ rdoc_options: []
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 2.3.0
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ requirements: []
56
+ rubygems_version: 3.2.3
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: Zephyr CLI
60
+ test_files: []