├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── powify ├── lib ├── powify.rb └── powify │ ├── app.rb │ ├── client.rb │ ├── core.rb │ ├── server.rb │ ├── utils.rb │ └── version.rb └── powify.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' -------------------------------------------------------------------------------- /bin/powify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/bin/powify -------------------------------------------------------------------------------- /lib/powify.rb: -------------------------------------------------------------------------------- 1 | require 'powify/core' -------------------------------------------------------------------------------- /lib/powify/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/lib/powify/app.rb -------------------------------------------------------------------------------- /lib/powify/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/lib/powify/client.rb -------------------------------------------------------------------------------- /lib/powify/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/lib/powify/core.rb -------------------------------------------------------------------------------- /lib/powify/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/lib/powify/server.rb -------------------------------------------------------------------------------- /lib/powify/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/lib/powify/utils.rb -------------------------------------------------------------------------------- /lib/powify/version.rb: -------------------------------------------------------------------------------- 1 | module Powify 2 | VERSION = '0.9.2' 3 | end 4 | -------------------------------------------------------------------------------- /powify.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethvargo/powify/HEAD/powify.gemspec --------------------------------------------------------------------------------