mnemonichost 0.1.0
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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/exe/mnemonichost +5 -0
- data/lib/mnemonichost.rb +5 -0
- data/lib/mnemonichost/cli.rb +19 -0
- data/lib/mnemonichost/version.rb +3 -0
- data/lib/mnemonichost/wordlist.txt +273 -0
- data/mnemonichost.gemspec +27 -0
- metadata +116 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 740201d919345707b7ed1706b948323293be3765
|
4
|
+
data.tar.gz: b8bfd0b459b53c0320c636ce7142ed82a5525692
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f310023d171c82bcff4887026c14308439c28130d2eba265d88c5c8a789f6e223481cb7bc31da051edda09904c7976e7ec0420f249801c4866dac61b9bb84d45
|
7
|
+
data.tar.gz: 3498a6ff419b6be9ff01c1535ebe3328f0bdaced3edae375599ddff2c7642f5c92c8d713234da6a01885a4dad87496b220706f1a1b9753bd83de5e77d55b9b4b
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 kakakakakku
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Mnemonichost
|
2
|
+
|
3
|
+
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/mnemonichost`. To experiment with that code, run `bin/console` for an interactive prompt.
|
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 'mnemonichost'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install mnemonichost
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. Run `bundle exec mnemonichost` to use the gem in this directory, ignoring other installed copies of this gem.
|
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`, 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]/mnemonichost.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "mnemonichost"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/exe/mnemonichost
ADDED
data/lib/mnemonichost.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'thor'
|
2
|
+
|
3
|
+
module Mnemonichost
|
4
|
+
class CLI < Thor
|
5
|
+
|
6
|
+
def initialize(*args)
|
7
|
+
super
|
8
|
+
@words = File.read(File.expand_path('../wordlist.txt', __FILE__)).split
|
9
|
+
end
|
10
|
+
|
11
|
+
desc 'gen', 'Generate sample host name by mnemonic wordlist.'
|
12
|
+
def gen(size)
|
13
|
+
size.to_i.times do
|
14
|
+
puts @words.sample + '.example.com'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,273 @@
|
|
1
|
+
acrobat africa alaska albert albino album
|
2
|
+
alcohol alex alpha amadeus amanda amazon
|
3
|
+
america analog animal antenna antonio apollo
|
4
|
+
april aroma artist aspirin athlete atlas
|
5
|
+
banana bandit banjo bikini bingo bonus
|
6
|
+
camera canada carbon casino catalog cinema
|
7
|
+
citizen cobra comet compact complex context
|
8
|
+
credit critic crystal culture david delta
|
9
|
+
dialog diploma doctor domino dragon drama
|
10
|
+
extra fabric final focus forum galaxy
|
11
|
+
gallery global harmony hotel humor index
|
12
|
+
japan kilo lemon liter lotus mango
|
13
|
+
melon menu meter metro mineral model
|
14
|
+
music object piano pirate plastic radio
|
15
|
+
report signal sport studio subject super
|
16
|
+
tango taxi tempo tennis textile tokyo
|
17
|
+
total tourist video visa academy alfred
|
18
|
+
atlanta atomic barbara bazaar brother budget
|
19
|
+
cabaret cadet candle capsule caviar channel
|
20
|
+
chapter circle cobalt comrade condor crimson
|
21
|
+
cyclone darwin declare denver desert divide
|
22
|
+
dolby domain double eagle echo eclipse
|
23
|
+
editor educate edward effect electra emerald
|
24
|
+
emotion empire eternal evening exhibit expand
|
25
|
+
explore extreme ferrari forget freedom friday
|
26
|
+
fuji galileo genesis gravity habitat hamlet
|
27
|
+
harlem helium holiday hunter ibiza iceberg
|
28
|
+
imagine infant isotope jackson jamaica jasmine
|
29
|
+
java jessica kitchen lazarus letter license
|
30
|
+
lithium loyal lucky magenta manual marble
|
31
|
+
maxwell mayor monarch monday money morning
|
32
|
+
mother mystery native nectar nelson network
|
33
|
+
nikita nobel nobody nominal norway nothing
|
34
|
+
number october office oliver opinion option
|
35
|
+
order outside package pandora panther papa
|
36
|
+
pattern pedro pencil people phantom philips
|
37
|
+
pioneer pluto podium portal potato process
|
38
|
+
proxy pupil python quality quarter quiet
|
39
|
+
rabbit radical radius rainbow ramirez ravioli
|
40
|
+
raymond respect respond result resume richard
|
41
|
+
river roger roman rondo sabrina salary
|
42
|
+
salsa sample samuel saturn savage scarlet
|
43
|
+
scorpio sector serpent shampoo sharon silence
|
44
|
+
simple society sonar sonata soprano sparta
|
45
|
+
spider sponsor abraham action active actor
|
46
|
+
adam address admiral adrian agenda agent
|
47
|
+
airline airport alabama aladdin alarm algebra
|
48
|
+
alibi alice alien almond alpine amber
|
49
|
+
amigo ammonia analyze anatomy angel annual
|
50
|
+
answer apple archive arctic arena arizona
|
51
|
+
armada arnold arsenal arthur asia aspect
|
52
|
+
athena audio august austria avenue average
|
53
|
+
axiom aztec bagel baker balance ballad
|
54
|
+
ballet bambino bamboo baron basic basket
|
55
|
+
battery belgium benefit berlin bermuda bernard
|
56
|
+
bicycle binary biology bishop blitz block
|
57
|
+
blonde bonjour boris boston bottle boxer
|
58
|
+
brandy bravo brazil bridge british bronze
|
59
|
+
brown bruce bruno brush burger burma
|
60
|
+
cabinet cactus cafe cairo calypso camel
|
61
|
+
campus canal cannon canoe cantina canvas
|
62
|
+
canyon capital caramel caravan career cargo
|
63
|
+
carlo carol carpet cartel cartoon castle
|
64
|
+
castro cecilia cement center century ceramic
|
65
|
+
chamber chance change chaos charlie charm
|
66
|
+
charter cheese chef chemist cherry chess
|
67
|
+
chicago chicken chief china cigar circus
|
68
|
+
city clara classic claudia clean client
|
69
|
+
climax clinic clock club cockpit coconut
|
70
|
+
cola collect colombo colony color combat
|
71
|
+
comedy command company concert connect consul
|
72
|
+
contact contour control convert copy corner
|
73
|
+
corona correct cosmos couple courage cowboy
|
74
|
+
craft crash cricket crown cuba dallas
|
75
|
+
dance daniel decade decimal degree delete
|
76
|
+
deliver delphi deluxe demand demo denmark
|
77
|
+
derby design detect develop diagram diamond
|
78
|
+
diana diego diesel diet digital dilemma
|
79
|
+
direct disco disney distant dollar dolphin
|
80
|
+
donald drink driver dublin duet dynamic
|
81
|
+
earth east ecology economy edgar egypt
|
82
|
+
elastic elegant element elite elvis email
|
83
|
+
empty energy engine english episode equator
|
84
|
+
escape escort ethnic europe everest evident
|
85
|
+
exact example exit exotic export express
|
86
|
+
factor falcon family fantasy fashion fiber
|
87
|
+
fiction fidel fiesta figure film filter
|
88
|
+
finance finish finland first flag flash
|
89
|
+
florida flower fluid flute folio ford
|
90
|
+
forest formal formula fortune forward fragile
|
91
|
+
france frank fresh friend frozen future
|
92
|
+
gabriel gamma garage garcia garden garlic
|
93
|
+
gemini general genetic genius germany gloria
|
94
|
+
gold golf gondola gong good gordon
|
95
|
+
gorilla grand granite graph green group
|
96
|
+
guide guitar guru hand happy harbor
|
97
|
+
harvard havana hawaii helena hello henry
|
98
|
+
hilton history horizon house human icon
|
99
|
+
idea igloo igor image impact import
|
100
|
+
india indigo input insect instant iris
|
101
|
+
italian jacket jacob jaguar janet jargon
|
102
|
+
jazz jeep john joker jordan judo
|
103
|
+
jumbo june jungle junior jupiter karate
|
104
|
+
karma kayak kermit king koala korea
|
105
|
+
labor lady lagoon laptop laser latin
|
106
|
+
lava lecture left legal level lexicon
|
107
|
+
liberal libra lily limbo limit linda
|
108
|
+
linear lion liquid little llama lobby
|
109
|
+
lobster local logic logo lola london
|
110
|
+
lucas lunar machine macro madam madonna
|
111
|
+
madrid maestro magic magnet magnum mailbox
|
112
|
+
major mama mambo manager manila marco
|
113
|
+
marina market mars martin marvin mary
|
114
|
+
master matrix maximum media medical mega
|
115
|
+
melody memo mental mentor mercury message
|
116
|
+
metal meteor method mexico miami micro
|
117
|
+
milk million minimum minus minute miracle
|
118
|
+
mirage miranda mister mixer mobile modem
|
119
|
+
modern modular moment monaco monica monitor
|
120
|
+
mono monster montana morgan motel motif
|
121
|
+
motor mozart multi museum mustang natural
|
122
|
+
neon nepal neptune nerve neutral nevada
|
123
|
+
news next ninja nirvana normal nova
|
124
|
+
novel nuclear numeric nylon oasis observe
|
125
|
+
ocean octopus olivia olympic omega opera
|
126
|
+
optic optimal orange orbit organic orient
|
127
|
+
origin orlando oscar oxford oxygen ozone
|
128
|
+
pablo pacific pagoda palace pamela panama
|
129
|
+
pancake panda panel panic paradox pardon
|
130
|
+
paris parker parking parody partner passage
|
131
|
+
passive pasta pastel patent patient patriot
|
132
|
+
patrol pegasus pelican penguin pepper percent
|
133
|
+
perfect perfume period permit person peru
|
134
|
+
phone photo picasso picnic picture pigment
|
135
|
+
pilgrim pilot pixel pizza planet plasma
|
136
|
+
plaza pocket poem poetic poker polaris
|
137
|
+
police politic polo polygon pony popcorn
|
138
|
+
popular postage precise prefix premium present
|
139
|
+
price prince printer prism private prize
|
140
|
+
product profile program project protect proton
|
141
|
+
public pulse puma pump pyramid queen
|
142
|
+
radar ralph random rapid rebel record
|
143
|
+
recycle reflex reform regard regular relax
|
144
|
+
reptile reverse ricardo right ringo risk
|
145
|
+
ritual robert robot rocket rodeo romeo
|
146
|
+
royal russian safari salad salami salmon
|
147
|
+
salon salute samba sandra santana sardine
|
148
|
+
school scoop scratch screen script scroll
|
149
|
+
second secret section segment select seminar
|
150
|
+
senator senior sensor serial service shadow
|
151
|
+
sharp sheriff shock short shrink sierra
|
152
|
+
silicon silk silver similar simon single
|
153
|
+
siren slang slogan smart smoke snake
|
154
|
+
social soda solar solid solo sonic
|
155
|
+
source soviet special speed sphere spiral
|
156
|
+
spirit spring static status stereo stone
|
157
|
+
stop street strong student style sultan
|
158
|
+
susan sushi suzuki switch symbol system
|
159
|
+
tactic tahiti talent tarzan telex texas
|
160
|
+
theory thermos tiger titanic tomato topic
|
161
|
+
tornado toronto torpedo totem tractor traffic
|
162
|
+
transit trapeze travel tribal trick trident
|
163
|
+
trilogy tripod tropic trumpet tulip tuna
|
164
|
+
turbo twist ultra uniform union uranium
|
165
|
+
vacuum valid vampire vanilla vatican velvet
|
166
|
+
ventura venus vertigo veteran victor vienna
|
167
|
+
viking village vincent violet violin virtual
|
168
|
+
virus vision visitor visual vitamin viva
|
169
|
+
vocal vodka volcano voltage volume voyage
|
170
|
+
water weekend welcome western window winter
|
171
|
+
wizard wolf world xray yankee yoga
|
172
|
+
yogurt yoyo zebra zero zigzag zipper
|
173
|
+
zodiac zoom acid adios agatha alamo
|
174
|
+
alert almanac aloha andrea anita arcade
|
175
|
+
aurora avalon baby baggage balloon bank
|
176
|
+
basil begin biscuit blue bombay botanic
|
177
|
+
brain brenda brigade cable calibre carmen
|
178
|
+
cello celtic chariot chrome citrus civil
|
179
|
+
cloud combine common cool copper coral
|
180
|
+
crater cubic cupid cycle depend door
|
181
|
+
dream dynasty edison edition enigma equal
|
182
|
+
eric event evita exodus extend famous
|
183
|
+
farmer food fossil frog fruit geneva
|
184
|
+
gentle george giant gilbert gossip gram
|
185
|
+
greek grille hammer harvest hazard heaven
|
186
|
+
herbert heroic hexagon husband immune inca
|
187
|
+
inch initial isabel ivory jason jerome
|
188
|
+
joel joshua journal judge juliet jump
|
189
|
+
justice kimono kinetic leonid leopard lima
|
190
|
+
maze medusa member memphis michael miguel
|
191
|
+
milan mile miller mimic mimosa mission
|
192
|
+
monkey moral moses mouse nancy natasha
|
193
|
+
nebula nickel nina noise orchid oregano
|
194
|
+
origami orinoco orion othello paper paprika
|
195
|
+
prelude prepare pretend promise prosper provide
|
196
|
+
puzzle remote repair reply rival riviera
|
197
|
+
robin rose rover rudolf saga sahara
|
198
|
+
scholar shelter ship shoe sigma sister
|
199
|
+
sleep smile spain spark split spray
|
200
|
+
square stadium star storm story strange
|
201
|
+
stretch stuart subway sugar sulfur summer
|
202
|
+
survive sweet swim table taboo target
|
203
|
+
teacher telecom temple tibet ticket tina
|
204
|
+
today toga tommy tower trivial tunnel
|
205
|
+
turtle twin uncle unicorn unique update
|
206
|
+
valery vega version voodoo warning william
|
207
|
+
wonder year yellow young absent absorb
|
208
|
+
absurd accent alfonso alias ambient anagram
|
209
|
+
andy anvil appear apropos archer ariel
|
210
|
+
armor arrow austin avatar axis baboon
|
211
|
+
bahama bali balsa barcode bazooka beach
|
212
|
+
beast beatles beauty before benny betty
|
213
|
+
between beyond billy bison blast bless
|
214
|
+
bogart bonanza book border brave bread
|
215
|
+
break broken bucket buenos buffalo bundle
|
216
|
+
button buzzer byte caesar camilla canary
|
217
|
+
candid carrot cave chant child choice
|
218
|
+
chris cipher clarion clark clever cliff
|
219
|
+
clone conan conduct congo costume cotton
|
220
|
+
cover crack current danube data decide
|
221
|
+
deposit desire detail dexter dinner donor
|
222
|
+
druid drum easy eddie enjoy enrico
|
223
|
+
epoxy erosion except exile explain fame
|
224
|
+
fast father felix field fiona fire
|
225
|
+
fish flame flex flipper float flood
|
226
|
+
floor forbid forever fractal frame freddie
|
227
|
+
front fuel gallop game garbo gate
|
228
|
+
gelatin gibson ginger giraffe gizmo glass
|
229
|
+
goblin gopher grace gray gregory grid
|
230
|
+
griffin ground guest gustav gyro hair
|
231
|
+
halt harris heart heavy herman hippie
|
232
|
+
hobby honey hope horse hostel hydro
|
233
|
+
imitate info ingrid inside invent invest
|
234
|
+
invite ivan james jester jimmy join
|
235
|
+
joseph juice julius july kansas karl
|
236
|
+
kevin kiwi ladder lake laura learn
|
237
|
+
legacy legend lesson life light list
|
238
|
+
locate lopez lorenzo love lunch malta
|
239
|
+
mammal margin margo marion mask match
|
240
|
+
mayday meaning mercy middle mike mirror
|
241
|
+
modest morph morris mystic nadia nato
|
242
|
+
navy needle neuron never newton nice
|
243
|
+
night nissan nitro nixon north oberon
|
244
|
+
octavia ohio olga open opus orca
|
245
|
+
oval owner page paint palma parent
|
246
|
+
parlor parole paul peace pearl perform
|
247
|
+
phoenix phrase pierre pinball place plate
|
248
|
+
plato plume pogo point polka poncho
|
249
|
+
powder prague press presto pretty prime
|
250
|
+
promo quest quick quiz quota race
|
251
|
+
rachel raja ranger region remark rent
|
252
|
+
reward rhino ribbon rider road rodent
|
253
|
+
round rubber ruby rufus sabine saddle
|
254
|
+
sailor saint salt scale scuba season
|
255
|
+
secure shake shallow shannon shave shelf
|
256
|
+
sherman shine shirt side sinatra sincere
|
257
|
+
size slalom slow small snow sofia
|
258
|
+
song sound south speech spell spend
|
259
|
+
spoon stage stamp stand state stella
|
260
|
+
stick sting stock store sunday sunset
|
261
|
+
support supreme sweden swing tape tavern
|
262
|
+
think thomas tictac time toast tobacco
|
263
|
+
tonight torch torso touch toyota trade
|
264
|
+
tribune trinity triton truck trust type
|
265
|
+
under unit urban urgent user value
|
266
|
+
vendor venice verona vibrate virgo visible
|
267
|
+
vista vital voice vortex waiter watch
|
268
|
+
wave weather wedding wheel whiskey wisdom
|
269
|
+
android annex armani cake confide deal
|
270
|
+
define dispute genuine idiom impress include
|
271
|
+
ironic null nurse obscure prefer prodigy
|
272
|
+
ego fax jet job rio ski
|
273
|
+
yes
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'mnemonichost/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "mnemonichost"
|
8
|
+
spec.version = Mnemonichost::VERSION
|
9
|
+
spec.authors = ["kakakakakku"]
|
10
|
+
spec.email = ["y.yoshida22@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{mnemonichost: generate sample host name by mnemonic wordlist}
|
13
|
+
spec.description = %q{mnemonichost: generate sample host name by mnemonic wordlist}
|
14
|
+
spec.homepage = "https://github.com/Kakakakakku/mnemonichost"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "rspec"
|
25
|
+
|
26
|
+
spec.add_dependency "thor"
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mnemonichost
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- kakakakakku
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-07-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.10'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.10'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: thor
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: 'mnemonichost: generate sample host name by mnemonic wordlist'
|
70
|
+
email:
|
71
|
+
- y.yoshida22@gmail.com
|
72
|
+
executables:
|
73
|
+
- mnemonichost
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- ".rspec"
|
79
|
+
- ".travis.yml"
|
80
|
+
- Gemfile
|
81
|
+
- LICENSE.txt
|
82
|
+
- README.md
|
83
|
+
- Rakefile
|
84
|
+
- bin/console
|
85
|
+
- bin/setup
|
86
|
+
- exe/mnemonichost
|
87
|
+
- lib/mnemonichost.rb
|
88
|
+
- lib/mnemonichost/cli.rb
|
89
|
+
- lib/mnemonichost/version.rb
|
90
|
+
- lib/mnemonichost/wordlist.txt
|
91
|
+
- mnemonichost.gemspec
|
92
|
+
homepage: https://github.com/Kakakakakku/mnemonichost
|
93
|
+
licenses:
|
94
|
+
- MIT
|
95
|
+
metadata: {}
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
requirements: []
|
111
|
+
rubyforge_project:
|
112
|
+
rubygems_version: 2.2.2
|
113
|
+
signing_key:
|
114
|
+
specification_version: 4
|
115
|
+
summary: 'mnemonichost: generate sample host name by mnemonic wordlist'
|
116
|
+
test_files: []
|