├── .gemspec ├── CHANGELOG.rdoc ├── LICENSE.txt ├── README.rdoc ├── Rakefile ├── bin └── wolf ├── deps.rip └── lib ├── wolf.rb └── wolf ├── mouth.rb ├── stomach.rb └── version.rb /.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cldwalker/wolf/HEAD/.gemspec -------------------------------------------------------------------------------- /CHANGELOG.rdoc: -------------------------------------------------------------------------------- 1 | == 0.1.0 2 | * Initial release 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cldwalker/wolf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cldwalker/wolf/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cldwalker/wolf/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/wolf: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require 'wolf' 4 | Wolf.devour 5 | -------------------------------------------------------------------------------- /deps.rip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cldwalker/wolf/HEAD/deps.rip -------------------------------------------------------------------------------- /lib/wolf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cldwalker/wolf/HEAD/lib/wolf.rb -------------------------------------------------------------------------------- /lib/wolf/mouth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cldwalker/wolf/HEAD/lib/wolf/mouth.rb -------------------------------------------------------------------------------- /lib/wolf/stomach.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cldwalker/wolf/HEAD/lib/wolf/stomach.rb -------------------------------------------------------------------------------- /lib/wolf/version.rb: -------------------------------------------------------------------------------- 1 | module Wolf 2 | VERSION = '0.1.0' 3 | end 4 | --------------------------------------------------------------------------------