hello_planet 0.3.3 → 0.3.4
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 +33 -0
- data/lib/hello_planet/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bb4192df38ef9fc7ba33e3fdbafdc5f139793d4
|
4
|
+
data.tar.gz: 3c7988a8b78750a154cd13defb2de50745b89f4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa936dbe0db4d89e356d441b8c1d05914533cbbf52463f15a30305d3f7127611d8f6fa610cbac7315fe8534bd56f31bc9fd34382ebd3a2935ce47ac5a7f8098f
|
7
|
+
data.tar.gz: 73402e02638ef2f4d23d76bb81ad70bbe3570c194be4608c9c569e8e0c6dbb41ea0e1a414a2a1c8deae79f4bbcd056984f5d57755f6335e319a81d4b46efb8a3
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -42,6 +42,39 @@ or
|
|
42
42
|
|
43
43
|
to get a customized greeting.
|
44
44
|
|
45
|
+
## Commands to remember
|
46
|
+
|
47
|
+
Some useful commands and shortcuts that I do not want to forget and were employed for making this simple gem...
|
48
|
+
|
49
|
+
```sh
|
50
|
+
bundle exec rake release
|
51
|
+
|
52
|
+
gem build hello_planet.gemspec
|
53
|
+
irb -Ilib -rhello_planet
|
54
|
+
|
55
|
+
gem search hello_world
|
56
|
+
|
57
|
+
gem unpack titlegen
|
58
|
+
|
59
|
+
git branch -d hotfix-0.1.1
|
60
|
+
|
61
|
+
gmg hotfix-0.1.1
|
62
|
+
|
63
|
+
bundle install
|
64
|
+
|
65
|
+
gem install hello_planet
|
66
|
+
gem uninstall hello_planet
|
67
|
+
|
68
|
+
git push --set-upstream origin hotfix-0.3.1
|
69
|
+
git push origin --delete hotfix-0.3.1
|
70
|
+
|
71
|
+
|
72
|
+
irb -Ilib -rhello_planet
|
73
|
+
|
74
|
+
ruby -Ilib bin/hi
|
75
|
+
ruby bin/hi amigo
|
76
|
+
|
77
|
+
```
|
45
78
|
|
46
79
|
## Contributing
|
47
80
|
|
data/lib/hello_planet/version.rb
CHANGED