├── .gitignore ├── .ruby-version ├── Gemfile ├── README.MD ├── Rakefile ├── ass ├── screencast.gif └── screenshot.png ├── bin └── powerbar-demo ├── lib ├── powerbar.rb └── powerbar │ └── version.rb └── powerbar.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | .yardoc 6 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/busyloop/powerbar/HEAD/Gemfile -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/busyloop/powerbar/HEAD/README.MD -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/busyloop/powerbar/HEAD/Rakefile -------------------------------------------------------------------------------- /ass/screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/busyloop/powerbar/HEAD/ass/screencast.gif -------------------------------------------------------------------------------- /ass/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/busyloop/powerbar/HEAD/ass/screenshot.png -------------------------------------------------------------------------------- /bin/powerbar-demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/busyloop/powerbar/HEAD/bin/powerbar-demo -------------------------------------------------------------------------------- /lib/powerbar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/busyloop/powerbar/HEAD/lib/powerbar.rb -------------------------------------------------------------------------------- /lib/powerbar/version.rb: -------------------------------------------------------------------------------- 1 | class Powerbar 2 | VERSION = "2.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /powerbar.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/busyloop/powerbar/HEAD/powerbar.gemspec --------------------------------------------------------------------------------