alexevanczuk-example-gem 0.1.1

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: e0979c78e30e461873dfa16a2a4fa9bcf3f76e991c01f6086acbd100ab1602f6
4
+ data.tar.gz: eb39cf6cee198a29eebe7a41750d81677a70206b8213356bdb46cc306be9c8e3
5
+ SHA512:
6
+ metadata.gz: e29674ced1805b3b0f8665dc0871927822c7dd9a5c55d255d28bc12d6a8b7c86566c2bad70a9906d006c397aa5acf0a07bbf84ef3bc81b694909d52a4e5de018
7
+ data.tar.gz: '0099b555723d2ee698c6079465c47f2dd9c92582a5bd2072ad2922e015616e2bb4d7a77b165ed392424054e08510ea9905937f70c2c305c4bda3f95a60fef5c5'
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # Alexevanczuk::Example::Gem
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/alexevanczuk/example/gem`. 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 'alexevanczuk-example-gem'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install alexevanczuk-example-gem
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]/alexevanczuk-example-gem. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/alexevanczuk-example-gem/blob/main/CODE_OF_CONDUCT.md).
36
+
37
+ ## Code of Conduct
38
+
39
+ Everyone interacting in the Alexevanczuk::Example::Gem project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/alexevanczuk-example-gem/blob/main/CODE_OF_CONDUCT.md).
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Alexevanczuk
4
+ module Example
5
+ module Gem
6
+ VERSION = "0.1.1"
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "gem/version"
4
+
5
+ module Alexevanczuk
6
+ module Example
7
+ module Gem
8
+ class Error < StandardError; end
9
+ # Your code goes here...
10
+ end
11
+ end
12
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: alexevanczuk-example-gem
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Alex Evanczuk
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-10-16 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: An example gem set up with CI and CD.
14
+ email:
15
+ - alex.evanczuk@gusto.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - lib/alexevanczuk/example/gem.rb
22
+ - lib/alexevanczuk/example/gem/version.rb
23
+ homepage: https://github.com/alexevanczuk/alexevanczuk-example-gem
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ homepage_uri: https://github.com/alexevanczuk/alexevanczuk-example-gem
28
+ source_code_uri: https://github.com/alexevanczuk/alexevanczuk-example-gem
29
+ changelog_uri: https://github.com/alexevanczuk/alexevanczuk-example-gem/releases
30
+ allowed_push_host: https://rubygems.org
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 2.6.0
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 3.1.6
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: An example gem set up with CI and CD.
50
+ test_files: []