├── .gitignore ├── .rspec ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── guess.gemspec ├── lib ├── guess.rb └── guess │ ├── female.txt │ ├── male.txt │ └── version.rb └── spec ├── guess_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.1.1 (2017-01-10) 2 | 3 | - Lazy load frequencies 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /guess.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/guess.gemspec -------------------------------------------------------------------------------- /lib/guess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/lib/guess.rb -------------------------------------------------------------------------------- /lib/guess/female.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/lib/guess/female.txt -------------------------------------------------------------------------------- /lib/guess/male.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/lib/guess/male.txt -------------------------------------------------------------------------------- /lib/guess/version.rb: -------------------------------------------------------------------------------- 1 | module Guess 2 | VERSION = "0.1.1" 3 | end 4 | -------------------------------------------------------------------------------- /spec/guess_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/spec/guess_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/guess/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------