gtk2passwordapp 1.1.0 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/bin/gtk2passwordapp CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'rubygems'
3
- gem 'gtk2applib', '~> 4.5.0'
3
+ gem 'gtk2applib', '~> 5.0.0'
4
4
  require 'gtk2applib/gtk2_app'
5
5
 
6
6
  application = {
@@ -22,7 +22,7 @@ about = {
22
22
  :website => 'http://ruby-gnome-apps.blogspot.com/search/label/Passwords',
23
23
  :website_label => 'Ruby-Gnome Password Manager',
24
24
  :license => 'GPL',
25
- :copyright => '2010-01-29 13:46:07',
25
+ :copyright => '2010-03-10 18:08:34',
26
26
  }
27
27
  Gtk2App.main_window(about) do |window|
28
28
  Gtk2PasswordApp.edit(window,passwords)
@@ -11,7 +11,7 @@ module Gtk2PasswordApp
11
11
  PRIMARY.text = passwords.password_of(account)
12
12
  CLIPBOARD.text = passwords.username_of(account)
13
13
  }
14
- item.child.modify_fg(Gtk::STATE_NORMAL, RED) if passwords.expired?(account)
14
+ item.child.modify_fg(Gtk::STATE_NORMAL, COLOR[:red]) if passwords.expired?(account)
15
15
  }
16
16
  Gtk2App.dock_menu.show_all
17
17
  end
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gtk2passwordapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 1
8
+ - 2
9
+ version: 1.1.2
5
10
  platform: ruby
6
11
  authors:
7
12
  - carlosjhr64@gmail.com
@@ -9,29 +14,37 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2010-01-29 00:00:00 -08:00
17
+ date: 2010-03-10 00:00:00 -08:00
13
18
  default_executable: gtk2passwordapp
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: crypt-tea
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
20
24
  requirements:
21
25
  - - ~>
22
26
  - !ruby/object:Gem::Version
27
+ segments:
28
+ - 1
29
+ - 3
30
+ - 0
23
31
  version: 1.3.0
24
- version:
32
+ type: :runtime
33
+ version_requirements: *id001
25
34
  - !ruby/object:Gem::Dependency
26
35
  name: gtk2applib
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
30
38
  requirements:
31
39
  - - ~>
32
40
  - !ruby/object:Gem::Version
33
- version: 4.5.0
34
- version:
41
+ segments:
42
+ - 5
43
+ - 0
44
+ - 0
45
+ version: 5.0.0
46
+ type: :runtime
47
+ version_requirements: *id002
35
48
  description: |
36
49
  A Ruby-Gnome password manager.
37
50
  Uses crypt-tea's Tiny Encryption Algorithm to encrypt the datafile.
@@ -46,10 +59,10 @@ extra_rdoc_files: []
46
59
 
47
60
  files:
48
61
  - ./gtk2passwordapp/passwords.rb
62
+ - ./gtk2passwordapp/passwords_data.rb
49
63
  - ./gtk2passwordapp/edit_box.rb
50
- - ./gtk2passwordapp/appconfig.rb
51
64
  - ./gtk2passwordapp/iocrypt.rb
52
- - ./gtk2passwordapp/passwords_data.rb
65
+ - ./gtk2passwordapp/appconfig.rb
53
66
  - ./pngs/logo.png
54
67
  - README.txt
55
68
  has_rdoc: true
@@ -65,18 +78,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
65
78
  requirements:
66
79
  - - ">="
67
80
  - !ruby/object:Gem::Version
81
+ segments:
82
+ - 0
68
83
  version: "0"
69
- version:
70
84
  required_rubygems_version: !ruby/object:Gem::Requirement
71
85
  requirements:
72
86
  - - ">="
73
87
  - !ruby/object:Gem::Version
88
+ segments:
89
+ - 0
74
90
  version: "0"
75
- version:
76
91
  requirements:
77
92
  - gtk2
78
93
  rubyforge_project: gtk2passwordapp
79
- rubygems_version: 1.3.5
94
+ rubygems_version: 1.3.6
80
95
  signing_key:
81
96
  specification_version: 3
82
97
  summary: Ruby-Gnome Password Manager