smartdict-icons 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.markdown ADDED
@@ -0,0 +1,8 @@
1
+ # smartdict-icons
2
+
3
+ Icons for Smartdict dictionary.
4
+
5
+ ## Copyright
6
+
7
+ Copyright (c) 2012 Potapov Sergey. See GPL-LICENSE.txt for
8
+ further details.
Binary file
data/icons/logo.png ADDED
Binary file
@@ -0,0 +1 @@
1
+ require File.expand_path('../smartdict/icons', __FILE__)
@@ -0,0 +1,18 @@
1
+ module Smartdict
2
+ module Icons
3
+ extend self
4
+
5
+ def icons_root
6
+ File.expand_path("../../../icons", __FILE__)
7
+ end
8
+
9
+ def icon(name, filename)
10
+ define_method(name) do
11
+ "#{icons_root}/#{filename}"
12
+ end
13
+ end
14
+
15
+ icon :interchange, "interchange.png"
16
+ icon :logo , "logo.png"
17
+ end
18
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: smartdict-icons
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Sergey Potapov
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-04-08 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 2.3.0
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 2.3.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: bundler
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 1.0.0
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.0.0
46
+ - !ruby/object:Gem::Dependency
47
+ name: jeweler
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 1.6.4
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 1.6.4
62
+ description: Icons for Smartdict GUI application
63
+ email: blake131313@gmail.com
64
+ executables: []
65
+ extensions: []
66
+ extra_rdoc_files:
67
+ - README.markdown
68
+ files:
69
+ - ./icons/interchange.png
70
+ - ./icons/logo.png
71
+ - ./lib/smartdict-icons.rb
72
+ - ./lib/smartdict/icons.rb
73
+ - README.markdown
74
+ homepage: http://github.com/greyblake/smartdict-icons
75
+ licenses:
76
+ - GPL v2
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ! '>='
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ! '>='
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 1.8.21
96
+ signing_key:
97
+ specification_version: 3
98
+ summary: Icons for Smartdict
99
+ test_files: []