devops_assist_test 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: efead37e7273309b06b4034f7f96a08b89d9e788ab4c3bc917008827a7a8c8c9
4
+ data.tar.gz: c344a1286d6f86e2554e4b7d7a87702db0694581e6dcd282a60b11697ebee8bf
5
+ SHA512:
6
+ metadata.gz: 78236a0d52669d5ad552bf6b5d36cb8abe2bcaa2bbba7b6d074eebbb703baa778f818fe4bcb60721713d9ac8058f38115976c3727c9f5119810160053c344b1c
7
+ data.tar.gz: 6b9eddaaa28d49ac9a612eada84bf9927f9ce5af4f9d1e7f1ab2d2cb1a955a428a9a0d047b2035b0bb75eefa651e9ae9eacd758feffb49220245729ee6397a1e
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/Gemfile ADDED
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in devops_assist_test.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "devops_assist", path: "../devops_assist"
13
+
14
+ gem "git_cli", path: '../../git/git_cli'
15
+ gem "git_cli_prompt", path: '../../git/git_cli_prompt'
16
+
17
+ gem 'toolrack', path: '../../WIP/toolrack'
18
+
data/Gemfile.lock ADDED
@@ -0,0 +1,87 @@
1
+ PATH
2
+ remote: ../../WIP/toolrack
3
+ specs:
4
+ toolrack (0.15.0)
5
+ base58
6
+ tlogger
7
+
8
+ PATH
9
+ remote: ../../git/git_cli_prompt
10
+ specs:
11
+ git_cli_prompt (0.1.0)
12
+ tlogger
13
+ tty-prompt
14
+
15
+ PATH
16
+ remote: ../../git/git_cli
17
+ specs:
18
+ git_cli (0.8.0)
19
+ gvcs
20
+ ptools (~> 1.4.0)
21
+ tlogger
22
+ toolrack
23
+
24
+ PATH
25
+ remote: ../devops_assist
26
+ specs:
27
+ devops_assist (0.1.0)
28
+ gvcs
29
+ tlogger
30
+ toolrack
31
+ tty-prompt
32
+
33
+ PATH
34
+ remote: .
35
+ specs:
36
+ devops_assist_test (0.1.3)
37
+
38
+ GEM
39
+ remote: https://rubygems.org/
40
+ specs:
41
+ base58 (0.2.3)
42
+ diff-lcs (1.4.4)
43
+ gvcs (0.1.0)
44
+ pastel (0.8.0)
45
+ tty-color (~> 0.5)
46
+ ptools (1.4.2)
47
+ rake (13.0.6)
48
+ rspec (3.10.0)
49
+ rspec-core (~> 3.10.0)
50
+ rspec-expectations (~> 3.10.0)
51
+ rspec-mocks (~> 3.10.0)
52
+ rspec-core (3.10.1)
53
+ rspec-support (~> 3.10.0)
54
+ rspec-expectations (3.10.1)
55
+ diff-lcs (>= 1.2.0, < 2.0)
56
+ rspec-support (~> 3.10.0)
57
+ rspec-mocks (3.10.2)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.10.0)
60
+ rspec-support (3.10.2)
61
+ tlogger (0.26.1)
62
+ tty-color (0.6.0)
63
+ tty-cursor (0.7.1)
64
+ tty-prompt (0.23.1)
65
+ pastel (~> 0.8)
66
+ tty-reader (~> 0.8)
67
+ tty-reader (0.9.0)
68
+ tty-cursor (~> 0.7)
69
+ tty-screen (~> 0.8)
70
+ wisper (~> 2.0)
71
+ tty-screen (0.8.1)
72
+ wisper (2.0.1)
73
+
74
+ PLATFORMS
75
+ x86_64-linux
76
+
77
+ DEPENDENCIES
78
+ devops_assist!
79
+ devops_assist_test!
80
+ git_cli!
81
+ git_cli_prompt!
82
+ rake (~> 13.0)
83
+ rspec (~> 3.0)
84
+ toolrack!
85
+
86
+ BUNDLED WITH
87
+ 2.2.28
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # DevopsAssistTest
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/devops_assist_test`. 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 'devops_assist_test'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install devops_assist_test
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. 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 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]/devops_assist_test.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require 'devops_assist'
9
+
10
+ task default: :spec
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 "devops_assist_test"
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,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/devops_assist_test/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "devops_assist_test"
7
+ spec.version = DevopsAssistTest::VERSION
8
+ spec.authors = ["Chris Liaw"]
9
+ spec.email = ["chrisliaw@antrapol.com"]
10
+
11
+ spec.summary = ""
12
+ spec.description = ""
13
+ spec.homepage = ""
14
+ spec.required_ruby_version = ">= 2.4.0"
15
+
16
+ #spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
17
+
18
+ #spec.metadata["homepage_uri"] = spec.homepage
19
+ #spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
20
+ #spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
21
+
22
+ # Specify which files should be added to the gem when it is released.
23
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
25
+ `git ls-files -z`.split("\x0").reject do |f|
26
+ (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
27
+ end
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ # Uncomment to register a new dependency of your gem
34
+ # spec.add_dependency "example-gem", "~> 1.0"
35
+
36
+ # For more information and examples about making a new gem, checkout our
37
+ # guide at: https://bundler.io/guides/creating_gem.html
38
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DevopsAssistTest
4
+ VERSION = "0.1.3"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "devops_assist_test/version"
4
+
5
+ module DevopsAssistTest
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: devops_assist_test
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - Chris Liaw
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-10-22 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: ''
14
+ email:
15
+ - chrisliaw@antrapol.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rspec"
21
+ - Gemfile
22
+ - Gemfile.lock
23
+ - README.md
24
+ - Rakefile
25
+ - bin/console
26
+ - bin/setup
27
+ - devops_assist_test.gemspec
28
+ - lib/devops_assist_test.rb
29
+ - lib/devops_assist_test/version.rb
30
+ homepage: ''
31
+ licenses: []
32
+ metadata: {}
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 2.4.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.2.22
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: ''
52
+ test_files: []