character_titles 0.1.0 → 0.1.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 +33 -32
- data/lib/character_titles/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: 105cd9be9628fdcba5374c29995a30cec7ccd635
|
|
4
|
+
data.tar.gz: b5e6bc9219d9a0873d04bd2a3573cecb4c25e2c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b461599eed5a2dd8061ceec523bca808cc8a1c484486baced57c70e8dae03119a6e9336d740a5152b56dd60976ffbcce92c19d02ed501d4e1a31d32786b2008f
|
|
7
|
+
data.tar.gz: e64258d371e05f3e4f737d900cf547604fbc6f2878536708f69ba9e9ff547183c75c2b8ccc703bb28531beaa6a4c5b3e8fdaaa26c2d0c08fea4094d33629ca24
|
data/README.md
CHANGED
|
@@ -1,39 +1,40 @@
|
|
|
1
1
|
# CharacterTitles
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This silly little gem generates random "titles" for evil fantasy characters. Things like:
|
|
4
4
|
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
6
|
-
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
Add this line to your application's Gemfile:
|
|
10
|
-
|
|
11
|
-
```ruby
|
|
12
|
-
gem 'character_titles'
|
|
13
5
|
```
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
6
|
+
Bodyeater
|
|
7
|
+
Terrible Sight Devourer, Ghoul of the Haunted Hinterworld
|
|
8
|
+
Body Roaster
|
|
9
|
+
Heartbanisher, Horror of Overrealm
|
|
10
|
+
Colon Walker, the Ghost of the Caverns
|
|
11
|
+
the Tearer of Skulls
|
|
12
|
+
Beast Masher
|
|
13
|
+
the Body Banisher, Scourage of the Southern Grassworld
|
|
14
|
+
Death Killer
|
|
15
|
+
Eyecooker
|
|
16
|
+
the Severer of Livers, Scourage of the Caverns
|
|
17
|
+
the Fat Grasper
|
|
18
|
+
Intestine Destroyer
|
|
19
|
+
the Eater of Hearts
|
|
20
|
+
Nasty Eater of Colons
|
|
21
|
+
Putrifying Banisher of Hearts, Terror of the Winter
|
|
22
|
+
Death Disembowler
|
|
23
|
+
the Rotting Devourer of Colons
|
|
24
|
+
the Head Impaler, Ghost of the Grassrealm
|
|
25
|
+
Arm Grasper, the Scourage of the Winter
|
|
26
|
+
the Terrible Wrencher of Bodies
|
|
27
|
+
Clawer of Colons, the Terror of the Winter
|
|
28
|
+
the Sight Sucker, the Terror of the Underrealm
|
|
29
|
+
the Colonwrencher
|
|
30
|
+
Sight Eater, Beast of Snowy West
|
|
31
|
+
Walker of Beasts, Demon of the Grassland
|
|
32
|
+
Deathtearer
|
|
33
|
+
Putrid Sightwrencher, the Beast of the Crimson South
|
|
34
|
+
Headimpaler, the Terror of Hinterworld
|
|
35
|
+
Putrifying Fleshimpaler, Ghost of Grassrealm
|
|
36
|
+
```
|
|
22
37
|
|
|
23
38
|
## Usage
|
|
24
39
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
## Development
|
|
28
|
-
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
-
|
|
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` to 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
|
-
1. Fork it ( https://github.com/[my-github-username]/character_titles/fork )
|
|
36
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
37
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
38
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
|
39
|
-
5. Create a new Pull Request
|
|
40
|
+
Just call `CharacterTitles::Evil.generate` and be done with it.
|