├── .document ├── .gitignore ├── .travis.yml ├── Gemfile ├── HISTORY.markdown ├── LICENSE.txt ├── README.markdown ├── Rakefile ├── data ├── adjs.json └── nouns.json ├── lib ├── random-word.rb ├── random_word.rb └── random_word │ └── version.rb ├── random-word.gemspec └── spec ├── random-word_spec.rb ├── random_word_spec.rb ├── spec_helper.rb └── support └── matchers.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/HISTORY.markdown -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/Rakefile -------------------------------------------------------------------------------- /data/adjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/data/adjs.json -------------------------------------------------------------------------------- /data/nouns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/data/nouns.json -------------------------------------------------------------------------------- /lib/random-word.rb: -------------------------------------------------------------------------------- 1 | require 'random_word' 2 | -------------------------------------------------------------------------------- /lib/random_word.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/lib/random_word.rb -------------------------------------------------------------------------------- /lib/random_word/version.rb: -------------------------------------------------------------------------------- 1 | module RandomWord 2 | VERSION = '2.1.1'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /random-word.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/random-word.gemspec -------------------------------------------------------------------------------- /spec/random-word_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/spec/random-word_spec.rb -------------------------------------------------------------------------------- /spec/random_word_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/spec/random_word_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlogic/random-word/HEAD/spec/support/matchers.rb --------------------------------------------------------------------------------