Sha256: 20913628caca0d15e74718e21971cf03a22b25ebd45b215215d1c4ef7d93e74c
Contents?: true
Size: 845 Bytes
Versions: 1
Compression:
Stored size: 845 Bytes
Contents
#!/usr/bin/env ruby require 'rubygems' gem 'gtk2applib', '~> 4.5.0' require 'gtk2applib/gtk2_app' application = { :name => 'Ruby-Gnome Password Manager', :tooltip => 'Password Manager', :FILE => __FILE__, } Gtk2App.init(application) Gtk2App.icon.set_icon_name(Gtk::Stock::DIALOG_AUTHENTICATION) require 'gtk2passwordapp/edit_box.rb' require 'gtk2passwordapp/passwords.rb' passwords = Gtk2PasswordApp::Passwords.new Gtk2PasswordApp.build_menu(passwords) about = { :authors => ['carlosjhr64@gmail.com'], :comments => 'Ruby-Gtk2 Passsword Manager', :website => 'http://ruby-gnome-apps.blogspot.com/search/label/Passwords', :website_label => 'Ruby-Gnome Password Manager', :license => 'GPL', :copyright => '2010-01-29 13:46:07', } Gtk2App.main_window(about) do |window| Gtk2PasswordApp.edit(window,passwords) end Gtk2App.finalize
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gtk2passwordapp-1.1.0 | bin/gtk2passwordapp |