-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttonize.gemspec
More file actions
73 lines (68 loc) · 3.28 KB
/
buttonize.gemspec
File metadata and controls
73 lines (68 loc) · 3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Gem::Specification.new do |s|
s.name = "buttonize"
s.version = "0.2.0"
s.date = "2009-05-22"
s.authors = ["Flurin Egger"]
s.email = "f.p.egger@gmail.com"
s.summary = "A button generation tool for web applications."
s.homepage = "http://github.com/flurin/buttonize"
s.files = %w( bin/buttonize
buttonize.gemspec
examples/buttons.rb
examples/default/big_blue_left.gif
examples/default/big_blue_middle.gif
examples/default/big_blue_right.gif
examples/default/big_green_left.gif
examples/default/big_green_middle.gif
examples/default/big_green_right.gif
examples/default/big_orange_left.gif
examples/default/big_orange_middle.gif
examples/default/big_orange_right.gif
examples/default/big_red_left.gif
examples/default/big_red_middle.gif
examples/default/big_red_right.gif
examples/default/fonts/Bitstream\ Vera\ License.txt
examples/default/fonts/Vera-Bold-Italic.ttf
examples/default/fonts/Vera-Bold.ttf
examples/default/fonts/Vera-Italic.ttf
examples/default/fonts/Vera.ttf
examples/default/small_blue_left.gif
examples/default/small_blue_middle.gif
examples/default/small_blue_right.gif
examples/default/small_green_left.gif
examples/default/small_green_middle.gif
examples/default/small_green_right.gif
examples/default/small_orange_left.gif
examples/default/small_orange_middle.gif
examples/default/small_orange_right.gif
examples/default/small_red_left.gif
examples/default/small_red_middle.gif
examples/default/small_red_right.gif
examples/default/styles.rb
examples/default/table_blue_left.gif
examples/default/table_blue_middle.gif
examples/default/table_blue_right.gif
examples/default/table_green_left.gif
examples/default/table_green_middle.gif
examples/default/table_green_right.gif
examples/default/table_orange_left.gif
examples/default/table_orange_middle.gif
examples/default/table_orange_right.gif
examples/default/table_red_left.gif
examples/default/table_red_middle.gif
examples/default/table_red_right.gif
lib/buttonize/button.rb
lib/buttonize/button_set.rb
lib/buttonize/cli.rb
lib/buttonize/style_set.rb
lib/buttonize.rb
MIT-LICENSE
README
)
s.bindir = "bin"
s.executables << "buttonize"
s.require_paths = ["lib"]
s.has_rdoc = false
s.add_dependency "rmagick", [">= 2.5.1"]
s.add_dependency "wycats-thor", ["~> 0.9.8"]
end