xarozed_name_generator 1.0.0 → 1.0.1
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/README.md +10 -2
- data/lib/xarozed_name_generator/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: 006a682085798bce62f0ef8fb98a69428a2a6f60
|
4
|
+
data.tar.gz: a1c8b79469d8e2b2502212619b38914fd46e7b46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbcf77e8663e6ca011cac85383cc5872ed480c58bcf7c7c63e592021e80fe2269d3200f4caf3783ef61d6fd9c2053169a4409a1857177f5c38010f88b19e3b45
|
7
|
+
data.tar.gz: dd55baab18bef4bc2e1ee6c63a7f953375a3f30a52ea89595136f146ac327a886f655560b022e25b826d78f9e7c4df71140a5e73b12512a71bf745ecafdb5470
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# XarozedNameGenerator
|
2
2
|
|
3
|
-
|
3
|
+
Simple name generator for generating names in rogue-like games.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -20,8 +20,16 @@ Or install it yourself as:
|
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
23
|
-
```
|
23
|
+
```ruby
|
24
24
|
require 'xarozed_name_generator'
|
25
25
|
generator = XarozedNameGenerator::NameGenerator.new(chain_length)
|
26
26
|
puts generator.name
|
27
27
|
```
|
28
|
+
|
29
|
+
## Contributing
|
30
|
+
|
31
|
+
1. Fork it ( https://github.com/alexYer/xarozed-name-generator/fork )
|
32
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
33
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
34
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
35
|
+
5. Create a new Pull Request
|