├── .gitignore ├── .simplecov ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── etc ├── libnotify-gnome3.png └── libnotify-ubuntu.png ├── lib ├── libnotify.rb └── libnotify │ ├── api.rb │ ├── ffi.rb │ ├── icon_finder.rb │ ├── tasks │ └── rubies.rake │ └── version.rb ├── libnotify.gemspec └── test ├── fixtures ├── .keep ├── emoticons │ └── 128x128 │ │ └── happy.jpg ├── icons │ ├── 128x128 │ │ └── happy.jpg │ ├── 16x16 │ │ └── happy.jpg │ ├── 32x32 │ │ └── happy.jpg │ └── other │ │ └── happy.jpg ├── images │ ├── another │ │ └── happy.jpg │ └── other │ │ └── happy.jpg └── libnotify.png ├── helper.rb ├── integration_test.rb ├── libnotify ├── api_test.rb └── icon_finder_test.rb └── libnotify_test.rb /.gitignore: -------------------------------------------------------------------------------- 1 | doc 2 | coverage 3 | pkg 4 | tags 5 | .yardoc 6 | .bundle 7 | Gemfile.lock 8 | *.rbc 9 | -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/.simplecov -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/Rakefile -------------------------------------------------------------------------------- /etc/libnotify-gnome3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/etc/libnotify-gnome3.png -------------------------------------------------------------------------------- /etc/libnotify-ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/etc/libnotify-ubuntu.png -------------------------------------------------------------------------------- /lib/libnotify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/lib/libnotify.rb -------------------------------------------------------------------------------- /lib/libnotify/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/lib/libnotify/api.rb -------------------------------------------------------------------------------- /lib/libnotify/ffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/lib/libnotify/ffi.rb -------------------------------------------------------------------------------- /lib/libnotify/icon_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/lib/libnotify/icon_finder.rb -------------------------------------------------------------------------------- /lib/libnotify/tasks/rubies.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/lib/libnotify/tasks/rubies.rake -------------------------------------------------------------------------------- /lib/libnotify/version.rb: -------------------------------------------------------------------------------- 1 | module Libnotify 2 | VERSION = "0.9.4" 3 | end 4 | -------------------------------------------------------------------------------- /libnotify.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/libnotify.gemspec -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/emoticons/128x128/happy.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/icons/128x128/happy.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/icons/16x16/happy.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/icons/32x32/happy.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/icons/other/happy.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/images/another/happy.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/images/other/happy.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/libnotify.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/test/integration_test.rb -------------------------------------------------------------------------------- /test/libnotify/api_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/test/libnotify/api_test.rb -------------------------------------------------------------------------------- /test/libnotify/icon_finder_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/test/libnotify/icon_finder_test.rb -------------------------------------------------------------------------------- /test/libnotify_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splattael/libnotify/HEAD/test/libnotify_test.rb --------------------------------------------------------------------------------