autocopper 0.1.0

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: 5958fef7cc0365ef595a5c4f41d9f05495939e43b610decf82be8b3b7c84b2b2
4
+ data.tar.gz: 8c58a28e1dfd132d3a26b1e93a6573efeb074ad17f5b6d6ff59d7911b0dfdaae
5
+ SHA512:
6
+ metadata.gz: 9cbcdc227e4e40026979807ecaa5f2d432d0f8da97ab4795637e1b6a288789563750260dd806bd569ea6e43a39f783aa6ffb57bffe52e59d92331139bf71210c
7
+ data.tar.gz: bf138151042e759c45e6b00eb9d24a006cd049800bcb3e56940205391a8cf3dbb70598419064b17efb9ddae4ec76e691be48b8bc69dc2b65ac98e9dc2b3b248b
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Berkan Unal
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # autocopper
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/autocopper.svg)](https://rubygems.org/gems/autocopper)
4
+ [![CI](https://github.com/brkn/copper/actions/workflows/ci.yml/badge.svg)](https://github.com/brkn/copper/actions/workflows/ci.yml)
5
+ [![Code Climate](https://codeclimate.com/github/brkn/copper/badges/gpa.svg)](https://codeclimate.com/github/brkn/copper)
6
+
7
+ TODO: Description of this gem goes here.
8
+
9
+ ---
10
+
11
+ - [Quick start](#quick-start)
12
+ - [Support](#support)
13
+ - [License](#license)
14
+ - [Code of conduct](#code-of-conduct)
15
+ - [Contribution guide](#contribution-guide)
16
+
17
+ ## Quick start
18
+
19
+ ```
20
+ $ gem install autocopper
21
+ ```
22
+
23
+ ## Support
24
+
25
+ If you want to report a bug, or have ideas, feedback or questions about the gem, [let me know via GitHub issues](https://github.com/brkn/copper/issues/new) and I will do my best to provide a helpful answer. Happy hacking!
26
+
27
+ ## License
28
+
29
+ The gem is available as open source under the terms of the [MIT License](LICENSE.txt).
30
+
31
+ ## Code of conduct
32
+
33
+ Everyone interacting in this project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](CODE_OF_CONDUCT.md).
34
+
35
+ ## Contribution guide
36
+
37
+ Pull requests are welcome!
@@ -0,0 +1,3 @@
1
+ module Autocopper
2
+ VERSION = "0.1.0".freeze
3
+ end
data/lib/autocopper.rb ADDED
@@ -0,0 +1,3 @@
1
+ module Autocopper
2
+ autoload :VERSION, "autocopper/version"
3
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: autocopper
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Berkan Unal
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-03-13 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - Berkanunal@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.txt
21
+ - README.md
22
+ - lib/autocopper.rb
23
+ - lib/autocopper/version.rb
24
+ homepage: https://github.com/brkn/copper
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ bug_tracker_uri: https://github.com/brkn/copper/issues
29
+ changelog_uri: https://github.com/brkn/copper/releases
30
+ source_code_uri: https://github.com/brkn/copper
31
+ homepage_uri: https://github.com/brkn/copper
32
+ rubygems_mfa_required: 'true'
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.6'
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.32
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: ''
52
+ test_files: []