-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcorrect-horse-battery-staple.gemspec
59 lines (55 loc) · 5.88 KB
/
correct-horse-battery-staple.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "correct-horse-battery-staple"
s.version = "0.6.4.20120113111503"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Robert Sanders"]
s.cert_chain = ["/Users/robertsanders/.gem/gem-public_cert.pem"]
s.date = "2012-01-13"
s.description = "Generate a 4 word password from words of size 3-8 characters, with\nfrequencies in the 30th-60th percentile. This range gives a nice set\nof uncommon but not completely alien words.\n\n $ chbs generate --verbose -W 3..8 -P 30..60\n Corpus size: 6396 candidate words of 33075 total\n Entropy: 48 bits (2^48 = 281474976710656)\n Years to guess at 1000 guesses/sec: 8926\n magnate-thermal-sandbank-augur\n\nWith the --verbose flag, the utility will calculate a time-to-guess\nbased on a completely arbitrary 1000 guesses/sec. If you'd like a\nmore secure password, either relax the various filtering rules (-W and\n-P), add more words to the password, or use a larger corpus.\n\nBy default we use the American TV Shows & Scripts corpus taken from\nWiktionary.\n\nOthers provided:\n\n* Project Gutenberg 2005 corpus taken from Wiktionary.\n* 1 of every 7 of the top 60000 lemmas from wordfrequency.info (6900\n actual lemmas after processing)\n\nSee http://xkcd.com/936/ for the genesis of the idea.\n\nData sources:\n\n http://en.wiktionary.org/wiki/Wiktionary:Frequency_lists\n http://wordfrequency.info/"
s.email = ["robert@curioussquid.com"]
s.executables = ["chbs", "chbs-mkpass"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.files = ["Gemfile", "Gemfile.lock", "History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/chbs", "bin/chbs-mkpass", "lib/correct_horse_battery_staple.rb", "lib/correct_horse_battery_staple/assembler.rb", "lib/correct_horse_battery_staple/backend.rb", "lib/correct_horse_battery_staple/backend/isam.rb", "lib/correct_horse_battery_staple/backend/isam_kd.rb", "lib/correct_horse_battery_staple/backend/redis.rb", "lib/correct_horse_battery_staple/backend/redis/d_range.rb", "lib/correct_horse_battery_staple/corpus.rb", "lib/correct_horse_battery_staple/corpus/base.rb", "lib/correct_horse_battery_staple/corpus/isam.rb", "lib/correct_horse_battery_staple/corpus/isam_kd.rb", "lib/correct_horse_battery_staple/corpus/redis.rb", "lib/correct_horse_battery_staple/corpus/redis2.rb", "lib/correct_horse_battery_staple/corpus/serialized.rb", "lib/correct_horse_battery_staple/corpus/sqlite.rb", "lib/correct_horse_battery_staple/generator.rb", "lib/correct_horse_battery_staple/memoize.rb", "lib/correct_horse_battery_staple/parser.rb", "lib/correct_horse_battery_staple/parser/base.rb", "lib/correct_horse_battery_staple/parser/regex.rb", "lib/correct_horse_battery_staple/range_parser.rb", "lib/correct_horse_battery_staple/statistical_array.rb", "lib/correct_horse_battery_staple/stats.rb", "lib/correct_horse_battery_staple/word.rb", "lib/correct_horse_battery_staple/writer.rb", "lib/correct_horse_battery_staple/writer/base.rb", "lib/correct_horse_battery_staple/writer/csv.rb", "lib/correct_horse_battery_staple/writer/file.rb", "lib/correct_horse_battery_staple/writer/isam.rb", "lib/correct_horse_battery_staple/writer/isam_kd.rb", "lib/correct_horse_battery_staple/writer/json.rb", "lib/correct_horse_battery_staple/writer/marshal.rb", "lib/correct_horse_battery_staple/writer/redis.rb", "lib/correct_horse_battery_staple/writer/sqlite.rb", "script/generate_all", "script/load_redis", "script/perftest", "spec/corpus/serialized_spec.rb", "spec/corpus_spec.rb", "spec/correct_horse_battery_staple_spec.rb", "spec/fixtures/100.json", "spec/fixtures/corpus1.csv", "spec/fixtures/corpus100.json", "spec/fixtures/wiktionary1000.htm", "spec/range_parser_spec.rb", "spec/spec_helper.rb", "spec/statistical_array_spec.rb", "spec/support/spec_pry.rb", "spec/word_spec.rb", "correct-horse-battery-staple.gemspec", ".gemtest"]
s.homepage = "http://github.com/rsanders/correct-horse-battery-staple"
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = "correct-horse-battery-staple"
s.rubygems_version = "1.8.10"
s.signing_key = "/Users/robertsanders/.gem/gem-private_key.pem"
s.summary = "Generate a 4 word password from words of size 3-8 characters, with frequencies in the 30th-60th percentile"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<commander>, [">= 4.0"])
s.add_runtime_dependency(%q<fastercsv>, [">= 1.5.3"])
s.add_runtime_dependency(%q<json>, [">= 1.6.0"])
s.add_runtime_dependency(%q<redis>, [">= 2.2.2"])
s.add_runtime_dependency(%q<hiredis>, [">= 0.4.0"])
s.add_runtime_dependency(%q<tupalo-kdtree>, [">= 0.2.3"])
s.add_runtime_dependency(%q<sqlite3>, [">= 1.3.0"])
s.add_development_dependency(%q<rubyforge>, [">= 2.0.4"])
s.add_development_dependency(%q<hoe>, ["~> 2.12"])
else
s.add_dependency(%q<commander>, [">= 4.0"])
s.add_dependency(%q<fastercsv>, [">= 1.5.3"])
s.add_dependency(%q<json>, [">= 1.6.0"])
s.add_dependency(%q<redis>, [">= 2.2.2"])
s.add_dependency(%q<hiredis>, [">= 0.4.0"])
s.add_dependency(%q<tupalo-kdtree>, [">= 0.2.3"])
s.add_dependency(%q<sqlite3>, [">= 1.3.0"])
s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
s.add_dependency(%q<hoe>, ["~> 2.12"])
end
else
s.add_dependency(%q<commander>, [">= 4.0"])
s.add_dependency(%q<fastercsv>, [">= 1.5.3"])
s.add_dependency(%q<json>, [">= 1.6.0"])
s.add_dependency(%q<redis>, [">= 2.2.2"])
s.add_dependency(%q<hiredis>, [">= 0.4.0"])
s.add_dependency(%q<tupalo-kdtree>, [">= 0.2.3"])
s.add_dependency(%q<sqlite3>, [">= 1.3.0"])
s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
s.add_dependency(%q<hoe>, ["~> 2.12"])
end
end