counter_utils 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb1288ba02dc4dcf59b5f2eb0014325fd422298d480f9e4d76325a9a5ff82dfd
4
- data.tar.gz: 6efcd3e7fc371197a36bd6808b785e15cde509b28cc8b0b431aa2e4f76fc5d4d
3
+ metadata.gz: a55e01f06f1c6eb4096497fb85dcd9148ce0f03b49a417ed9d2a29b2eec764ff
4
+ data.tar.gz: 518aa5996b3fefc9b6f52940e642d365cae23a7a92f82009205da2a7f115547e
5
5
  SHA512:
6
- metadata.gz: 383d99e833af07081323bf187b16128d7241d26c5d355e3eda00dfa25e20a1b5ba768f3f5150a4a79d01fdf1d43b36e28f48c82307dde0fdc43977e5998a8552
7
- data.tar.gz: f037b047e5ea74ec0009819e7b103b66cf7fdf33ed29c1a799762e3d67a3b5f8e81ae82b18b53293826d3eafd231339c6018e68f4b6e6bd47c73d967d8384e80
6
+ metadata.gz: 8e83c5020de2e1ee54c74a804c2a60d8776609132c23ebf854e01e3b4f384069d28a5326fdcc5e8d32458751834dff31eab9596ded82ca6f3822ce921f483c48
7
+ data.tar.gz: 2c60db0d6319edf543c437a9468def829350178db43caf317a171a83eec82a9bdf7975c8db0fee27efa7b771fe723aff680f8f39a35dc5755ae871a73b17bace
data/README.md CHANGED
@@ -1,31 +1,46 @@
1
1
  # CounterUtils
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
3
+ ## Simple gem for counter utils
4
4
 
5
- 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/counter_utils`. To experiment with that code, run `bin/console` for an interactive prompt.
5
+ The gem still is in development
6
6
 
7
- ## Installation
7
+ ## Getting started
8
8
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
9
+ Add the following line to your Gemfile:
10
10
 
11
- Install the gem and add to the application's Gemfile by executing:
11
+ ```
12
+ gem 'counter_utils'
13
+ ```
12
14
 
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
15
+ Then run `bundle install` or run on terminal:
14
16
 
15
- If bundler is not being used to manage dependencies, install the gem by executing:
17
+ ```
18
+ gem install counter_utils
19
+ ```
16
20
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
21
+ ### Motivation
18
22
 
19
- ## Usage
23
+ The initial motivation is just for teaching purposes, I always wanted to create a gem, so this time I decided to create any one. In the future, I may add some real functionality to this gem, but for now thanks to the devs who are downloading this gem, it serves as an incentive to make something really useful for our RoR dev community. Thanks so much! ❤️
20
24
 
21
- TODO: Write usage instructions here
25
+ ## Author
22
26
 
23
- ## Development
27
+ <h3 align="center">
28
+ <img style="border-radius: 50%" src="https://avatars3.githubusercontent.com/u/1292594?s=460&u=0b1bfb0fc81256c59dc33f31ce344231bd5a5286&v=4" width="100px;" alt=""/>
29
+ <br/>
30
+ <strong>Elton Santos</strong> 🚀
31
+ <br/>
32
+ <br/>
24
33
 
25
- 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.
34
+ <a href="https://www.linkedin.com/in/eltonmelosantos" alt="LinkedIn" target="blank">
35
+ <img src="https://img.shields.io/badge/-LinkedIn-blue?style=flat-square&logo=Linkedin&logoColor=white" />
36
+ </a>
26
37
 
27
- 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).
38
+ <a href="mailto:elton.melo.santos@gmail.com?subject=Olá%20Elton" alt="Email" target="blank">
39
+ <img src="https://img.shields.io/badge/-Gmail-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:elton.melo.santos@gmail.com" />
40
+ </a>
28
41
 
29
- ## Contributing
42
+ <br/>
30
43
 
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/counter_utils.
44
+ Made with ❤️ by Elton Santos 👋🏽 [Contact me!](https://www.linkedin.com/in/eltonmelosantos/)
45
+
46
+ </h3>
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CounterUtils
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: counter_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elton Santos