hola_montells 0.2.2 → 0.2.5
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +7 -10
- data/hola_montells.gemspec +3 -1
- data/lib/hola_montells/version.rb +1 -1
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e22cd82f6ae99c51efc67e2e46bd4f2a98ca1a3d0d8c4ffa93dcb766c3198775
|
4
|
+
data.tar.gz: b502fb9620b5134f4a58db2868492011307b2f1b4beb117091c39918becf641c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 602f2e4049888180eb648ad5fcff7b513e46efb7cb99c99ed1911624836088cd1a1be935c09947e3125604b232cbe6c388e6969f47ba67d56d05abb5c4e6f8b3
|
7
|
+
data.tar.gz: 3040915a9a735fa526f78dc635c1c9032838db96544131ceec1c8c917e3bf426ac02267af3663eeb7b26a40ab0a8a3daff4a8d291bc8c17a07fbde71f5cd10cc
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
# HolaMontells
|
2
2
|
|
3
|
-
|
3
|
+
Thanks for watching here
|
4
4
|
|
5
|
-
|
5
|
+
This is just first gem built. I hope more will come.
|
6
|
+
|
7
|
+
Not useful value. I was just following the first [how to build a gem](https://guides.rubygems.org/make-your-own-gem/) tutorial
|
6
8
|
|
7
9
|
## Installation
|
8
10
|
|
@@ -22,19 +24,14 @@ Or install it yourself as:
|
|
22
24
|
|
23
25
|
## Usage
|
24
26
|
|
25
|
-
|
27
|
+
require 'hola_montells'
|
28
|
+
HolaMontells.hi
|
29
|
+
HolaMontells.hi(:englis)
|
26
30
|
|
27
31
|
## Development
|
28
32
|
|
29
33
|
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
34
|
|
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 tags, 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]/hola_montells.
|
36
|
-
|
37
|
-
|
38
35
|
## License
|
39
36
|
|
40
37
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/hola_montells.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
|
11
11
|
spec.summary = 'Just say ji'
|
12
12
|
spec.description = 'Just how to build gem tutorial'
|
13
|
-
spec.homepage = 'https://
|
13
|
+
spec.homepage = 'https://gitlab.com/montells/hola_gem'
|
14
14
|
spec.license = 'MIT'
|
15
15
|
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
16
16
|
|
@@ -25,4 +25,6 @@ Gem::Specification.new do |spec|
|
|
25
25
|
# spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
26
|
spec.executables << 'hola_montells'
|
27
27
|
spec.require_paths = ['lib']
|
28
|
+
spec.add_development_dependency 'rspec',
|
29
|
+
['~> 3.0']
|
28
30
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hola_montells
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michel Sánchez Montells
|
@@ -9,7 +9,21 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2022-03-03 00:00:00.000000000 Z
|
12
|
-
dependencies:
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rspec
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.0'
|
13
27
|
description: Just how to build gem tutorial
|
14
28
|
email:
|
15
29
|
- montells@aleph.engineering
|
@@ -36,11 +50,11 @@ files:
|
|
36
50
|
- lib/hola_montells.rb
|
37
51
|
- lib/hola_montells/translator.rb
|
38
52
|
- lib/hola_montells/version.rb
|
39
|
-
homepage: https://
|
53
|
+
homepage: https://gitlab.com/montells/hola_gem
|
40
54
|
licenses:
|
41
55
|
- MIT
|
42
56
|
metadata:
|
43
|
-
homepage_uri: https://
|
57
|
+
homepage_uri: https://gitlab.com/montells/hola_gem
|
44
58
|
post_install_message:
|
45
59
|
rdoc_options: []
|
46
60
|
require_paths:
|