atk_icons 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "http://rubygems.org"
2
+ gem "compass"
3
+
4
+ group :development do
5
+ gem "bundler", "~> 1.0.0"
6
+ gem "jeweler", "~> 1.6.2"
7
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,24 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ chunky_png (1.2.0)
5
+ compass (0.11.1)
6
+ chunky_png (~> 1.1)
7
+ fssm (>= 0.2.7)
8
+ sass (~> 3.1)
9
+ fssm (0.2.7)
10
+ git (1.2.5)
11
+ jeweler (1.6.2)
12
+ bundler (~> 1.0)
13
+ git (>= 1.2.5)
14
+ rake
15
+ rake (0.9.2)
16
+ sass (3.1.2)
17
+
18
+ PLATFORMS
19
+ ruby
20
+
21
+ DEPENDENCIES
22
+ bundler (~> 1.0.0)
23
+ compass
24
+ jeweler (~> 1.6.2)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Stefano Verna
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,64 @@
1
+ Agile Toolkit Icon Set Compass Extension
2
+ ==========================
3
+
4
+ A way to use the awesome [Agile Toolkit Icon Set](http://www.agiletech.ie/blog/128x16x16) within your project.
5
+
6
+ Installation
7
+ ============
8
+
9
+ From the command line:
10
+
11
+ sudo gem install atk_icons
12
+
13
+ Installing into an existing Rails project:
14
+
15
+ # add atk_icons to your Gemfile
16
+ gem 'atk_icons'
17
+
18
+ # require atk_icons from your Compass configuration file (compass.rb)
19
+ require 'atk_icons'
20
+
21
+ # import the extension into your scss/sass file
22
+ @import atk_icons
23
+
24
+ # copy atk_icons.png to your public/images directory
25
+ cd public/images && curl http://bit.ly/iHd2XF
26
+
27
+ Or create a new project:
28
+
29
+ compass create <project_name> -r atk_icons --using atk_icons
30
+
31
+ #import the extension into your scss/sass file
32
+ @import "atk_icons"
33
+
34
+ Usage Example
35
+ =============
36
+
37
+ # for a list of all the icons available, see http://www.agiletech.ie/blog/128x16x16
38
+
39
+ span.delete
40
+ / this will add an :after pseudo-selector with the selected icon
41
+ @import atk-icon-after("basic-ex")
42
+
43
+ span.delete span.icon
44
+ / alternatively, you can add a classic sub-element, and set the icon to it
45
+ @import atk-icon("basic-ex")
46
+
47
+
48
+ Contributing to atk_icons
49
+ =========================
50
+
51
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
52
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
53
+ * Fork the project
54
+ * Start a feature/bugfix branch
55
+ * Commit and push until you are happy with your contribution
56
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
57
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
58
+
59
+ Copyright
60
+ =========
61
+
62
+ Copyright (c) 2011 Stefano Verna. See LICENSE.txt for
63
+ further details.
64
+
data/Rakefile ADDED
@@ -0,0 +1,25 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "atk_icons"
18
+ gem.homepage = "http://github.com/welaika/atk_icons"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{A way to use the awesome Agile Toolkit Icon Set within your Compass project.}
21
+ gem.description = %Q{A way to use the awesome Agile Toolkit Icon Set within your Compass project.}
22
+ gem.email = "stefano.verna@welaika.com"
23
+ gem.authors = ["Stefano Verna"]
24
+ end
25
+ Jeweler::RubygemsDotOrgTasks.new
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
data/atk_icons.gemspec ADDED
@@ -0,0 +1,59 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{atk_icons}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = [%q{Stefano Verna}]
12
+ s.date = %q{2011-06-07}
13
+ s.description = %q{A way to use the awesome Agile Toolkit Icon Set within your Compass project.}
14
+ s.email = %q{stefano.verna@welaika.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ "Gemfile",
22
+ "Gemfile.lock",
23
+ "LICENSE.txt",
24
+ "README.md",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "atk_icons.gemspec",
28
+ "lib/atk_icons.rb",
29
+ "stylesheets/_atk-icons.sass",
30
+ "stylesheets/atk-icons/_sprites.sass",
31
+ "templates/project/atk_icons.png",
32
+ "templates/project/manifest.rb",
33
+ "templates/project/screen.sass"
34
+ ]
35
+ s.homepage = %q{http://github.com/welaika/atk_icons}
36
+ s.licenses = [%q{MIT}]
37
+ s.require_paths = [%q{lib}]
38
+ s.rubygems_version = %q{1.8.5}
39
+ s.summary = %q{A way to use the awesome Agile Toolkit Icon Set within your Compass project.}
40
+
41
+ if s.respond_to? :specification_version then
42
+ s.specification_version = 3
43
+
44
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
45
+ s.add_runtime_dependency(%q<compass>, [">= 0"])
46
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
47
+ s.add_development_dependency(%q<jeweler>, ["~> 1.6.2"])
48
+ else
49
+ s.add_dependency(%q<compass>, [">= 0"])
50
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
51
+ s.add_dependency(%q<jeweler>, ["~> 1.6.2"])
52
+ end
53
+ else
54
+ s.add_dependency(%q<compass>, [">= 0"])
55
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
56
+ s.add_dependency(%q<jeweler>, ["~> 1.6.2"])
57
+ end
58
+ end
59
+
data/lib/atk_icons.rb ADDED
@@ -0,0 +1,3 @@
1
+ require 'compass'
2
+ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
3
+ Compass::Frameworks.register('atk-icons', :path => extension_path)
@@ -0,0 +1,19 @@
1
+ @import atk-icons/sprites
2
+
3
+ @mixin atk-icon($icon, $offset-y: 0px)
4
+ :background-image image-url("atk_icons.png")
5
+ :display block
6
+ :height 16px
7
+ :width 14px
8
+ +atk-icon-sprite($icon, $offset-y)
9
+
10
+ @mixin atk-icon-after($icon, $offset-y: 0px)
11
+ position: relative
12
+ padding-left: 15px
13
+
14
+ &:before
15
+ +atk-icon($icon, $offset-y)
16
+ content: ""
17
+ position: absolute
18
+ left: 0px
19
+ top: 0px
@@ -0,0 +1,385 @@
1
+ @mixin atk-icon-sprite($icon, $offset-y)
2
+
3
+ @if $icon == "basic-plus"
4
+ :background-position -2px (0px + $offset-y)
5
+
6
+ @if $icon == "basic-minus"
7
+ :background-position 0 (-32px + $offset-y)
8
+
9
+ @if $icon == "basic-ex"
10
+ :background-position -2px (-64px + $offset-y)
11
+
12
+ @if $icon == "basic-question"
13
+ :background-position -2px (-96px + $offset-y)
14
+
15
+ @if $icon == "basic-exclam"
16
+ :background-position -2px (-128px + $offset-y)
17
+
18
+ @if $icon == "basic-info"
19
+ :background-position -2px (-160px + $offset-y)
20
+
21
+ @if $icon == "basic-check"
22
+ :background-position -2px (-192px + $offset-y)
23
+
24
+ @if $icon == "basic-cancel"
25
+ :background-position -2px (-224px + $offset-y)
26
+
27
+ @if $icon == "basic-user"
28
+ :background-position -2px (-256px + $offset-y)
29
+
30
+ @if $icon == "basic-group"
31
+ :background-position -2px (-288px + $offset-y)
32
+
33
+ @if $icon == "basic-search"
34
+ :background-position -2px (-320px + $offset-y)
35
+
36
+ @if $icon == "arrows-left"
37
+ :background-position -2px (-352px + $offset-y)
38
+
39
+ @if $icon == "arrows-right"
40
+ :background-position -2px (-384px + $offset-y)
41
+
42
+ @if $icon == "arrows-top"
43
+ :background-position -2px (-416px + $offset-y)
44
+
45
+ @if $icon == "arrows-bottom"
46
+ :background-position -2px (-448px + $offset-y)
47
+
48
+ @if $icon == "arrows-topright"
49
+ :background-position -2px (-480px + $offset-y)
50
+
51
+ @if $icon == "arrows-topleft"
52
+ :background-position -2px (-512px + $offset-y)
53
+
54
+ @if $icon == "arrows-bottomleft"
55
+ :background-position -2px (-544px + $offset-y)
56
+
57
+ @if $icon == "arrows-bottomright"
58
+ :background-position -2px (-576px + $offset-y)
59
+
60
+ @if $icon == "arrows-horizontal"
61
+ :background-position -2px (-608px + $offset-y)
62
+
63
+ @if $icon == "arrows-vertical"
64
+ :background-position -2px (-640px + $offset-y)
65
+
66
+ @if $icon == "arrows-move"
67
+ :background-position -2px (-672px + $offset-y)
68
+
69
+ @if $icon == "arrows-scale"
70
+ :background-position -2px (-704px + $offset-y)
71
+
72
+ @if $icon == "arrows-moveleft"
73
+ :background-position -2px (-736px + $offset-y)
74
+
75
+ @if $icon == "arrows-moveright"
76
+ :background-position -2px (-768px + $offset-y)
77
+
78
+ @if $icon == "arrows-movetop"
79
+ :background-position -2px (-800px + $offset-y)
80
+
81
+ @if $icon == "arrows-movebottom"
82
+ :background-position -2px (-832px + $offset-y)
83
+
84
+ @if $icon == "arrows-left2"
85
+ :background-position -2px (-864px + $offset-y)
86
+
87
+ @if $icon == "arrows-right2"
88
+ :background-position -2px (-896px + $offset-y)
89
+
90
+ @if $icon == "arrows-top2"
91
+ :background-position -2px (-928px + $offset-y)
92
+
93
+ @if $icon == "arrows-bottom2"
94
+ :background-position -2px (-960px + $offset-y)
95
+
96
+ @if $icon == "arrows-right3"
97
+ :background-position -2px (-992px + $offset-y)
98
+
99
+ @if $icon == "arrows-bottom3"
100
+ :background-position -2px (-1024px + $offset-y)
101
+
102
+ @if $icon == "arrows-left3"
103
+ :background-position -2px (-1056px + $offset-y)
104
+
105
+ @if $icon == "arrows-top3"
106
+ :background-position -2px (-1088px + $offset-y)
107
+
108
+ @if $icon == "arrows-laquo"
109
+ :background-position -2px (-1120px + $offset-y)
110
+
111
+ @if $icon == "arrows-raquo"
112
+ :background-position -2px (-1152px + $offset-y)
113
+
114
+ @if $icon == "player-previous"
115
+ :background-position -2px (-1184px + $offset-y)
116
+
117
+ @if $icon == "player-rewind"
118
+ :background-position -2px (-1216px + $offset-y)
119
+
120
+ @if $icon == "player-pause"
121
+ :background-position -2px (-1248px + $offset-y)
122
+
123
+ @if $icon == "player-stop"
124
+ :background-position -2px (-1280px + $offset-y)
125
+
126
+ @if $icon == "player-play"
127
+ :background-position -2px (-1312px + $offset-y)
128
+
129
+ @if $icon == "player-rec"
130
+ :background-position -2px (-1344px + $offset-y)
131
+
132
+ @if $icon == "player-forward"
133
+ :background-position -2px (-1376px + $offset-y)
134
+
135
+ @if $icon == "player-next"
136
+ :background-position -2px (-1408px + $offset-y)
137
+
138
+ @if $icon == "player-eject"
139
+ :background-position -2px (-1440px + $offset-y)
140
+
141
+ @if $icon == "player-shuffle"
142
+ :background-position -2px (-1472px + $offset-y)
143
+
144
+ @if $icon == "player-soundoff"
145
+ :background-position -2px (-1504px + $offset-y)
146
+
147
+ @if $icon == "player-soundon"
148
+ :background-position -2px (-1536px + $offset-y)
149
+
150
+ @if $icon == "player-soundon2"
151
+ :background-position -2px (-1568px + $offset-y)
152
+
153
+ @if $icon == "fun-chat"
154
+ :background-position -2px (-1600px + $offset-y)
155
+
156
+ @if $icon == "fun-heart"
157
+ :background-position -2px (-1632px + $offset-y)
158
+
159
+ @if $icon == "fun-star"
160
+ :background-position -2px (-1664px + $offset-y)
161
+
162
+ @if $icon == "fun-lightning"
163
+ :background-position -2px (-1696px + $offset-y)
164
+
165
+ @if $icon == "fun-sun"
166
+ :background-position -2px (-1728px + $offset-y)
167
+
168
+ @if $icon == "fun-moon"
169
+ :background-position -2px (-1760px + $offset-y)
170
+
171
+ @if $icon == "fun-cloud"
172
+ :background-position -2px (-1792px + $offset-y)
173
+
174
+ @if $icon == "fun-thumbsup"
175
+ :background-position -2px (-1824px + $offset-y)
176
+
177
+ @if $icon == "fun-thumbsdown"
178
+ :background-position -2px (-1856px + $offset-y)
179
+
180
+ @if $icon == "fun-happy"
181
+ :background-position -2px (-1888px + $offset-y)
182
+
183
+ @if $icon == "fun-sad"
184
+ :background-position -2px (-1920px + $offset-y)
185
+
186
+ @if $icon == "fun-drink"
187
+ :background-position -2px (-1952px + $offset-y)
188
+
189
+ @if $icon == "fun-image"
190
+ :background-position -2px (-1984px + $offset-y)
191
+
192
+ @if $icon == "fun-music"
193
+ :background-position -2px (-2016px + $offset-y)
194
+
195
+ @if $icon == "fun-movie"
196
+ :background-position -2px (-2048px + $offset-y)
197
+
198
+ @if $icon == "fun-cart"
199
+ :background-position -2px (-2080px + $offset-y)
200
+
201
+ @if $icon == "fun-tag"
202
+ :background-position -2px (-2112px + $offset-y)
203
+
204
+ @if $icon == "fun-puzzle"
205
+ :background-position -2px (-2144px + $offset-y)
206
+
207
+ @if $icon == "fun-umbrella"
208
+ :background-position -2px (-2176px + $offset-y)
209
+
210
+ @if $icon == "fun-tshirt"
211
+ :background-position -2px (-2208px + $offset-y)
212
+
213
+ @if $icon == "fun-car"
214
+ :background-position -2px (-2240px + $offset-y)
215
+
216
+ @if $icon == "fun-cursor"
217
+ :background-position -2px (-2272px + $offset-y)
218
+
219
+ @if $icon == "tech-power"
220
+ :background-position -2px (-2304px + $offset-y)
221
+
222
+ @if $icon == "tech-pulse"
223
+ :background-position -2px (-2336px + $offset-y)
224
+
225
+ @if $icon == "tech-bulb"
226
+ :background-position -2px (-2368px + $offset-y)
227
+
228
+ @if $icon == "tech-videocam"
229
+ :background-position -2px (-2400px + $offset-y)
230
+
231
+ @if $icon == "tech-tv"
232
+ :background-position -2px (-2432px + $offset-y)
233
+
234
+ @if $icon == "tech-cellphone"
235
+ :background-position -2px (-2464px + $offset-y)
236
+
237
+ @if $icon == "tech-phone"
238
+ :background-position -2px (-2496px + $offset-y)
239
+
240
+ @if $icon == "tech-headphones"
241
+ :background-position -2px (-2528px + $offset-y)
242
+
243
+ @if $icon == "tech-clock"
244
+ :background-position -2px (-2560px + $offset-y)
245
+
246
+ @if $icon == "tech-printer"
247
+ :background-position -2px (-2592px + $offset-y)
248
+
249
+ @if $icon == "tech-microphone"
250
+ :background-position -2px (-2624px + $offset-y)
251
+
252
+ @if $icon == "tech-lock"
253
+ :background-position -2px (-2656px + $offset-y)
254
+
255
+ @if $icon == "tech-unlock"
256
+ :background-position -2px (-2688px + $offset-y)
257
+
258
+ @if $icon == "tech-gear"
259
+ :background-position -2px (-2720px + $offset-y)
260
+
261
+ @if $icon == "tech-wrench"
262
+ :background-position -2px (-2752px + $offset-y)
263
+
264
+ @if $icon == "tech-scissors"
265
+ :background-position -2px (-2784px + $offset-y)
266
+
267
+ @if $icon == "tech-trash"
268
+ :background-position -2px (-2816px + $offset-y)
269
+
270
+ @if $icon == "nav-home"
271
+ :background-position -2px (-2848px + $offset-y)
272
+
273
+ @if $icon == "nav-mail"
274
+ :background-position -2px (-2880px + $offset-y)
275
+
276
+ @if $icon == "nav-sitemap"
277
+ :background-position -2px (-2912px + $offset-y)
278
+
279
+ @if $icon == "nav-link"
280
+ :background-position -2px (-2944px + $offset-y)
281
+
282
+ @if $icon == "nav-restore"
283
+ :background-position -2px (-2976px + $offset-y)
284
+
285
+ @if $icon == "nav-switches"
286
+ :background-position -2px (-3008px + $offset-y)
287
+
288
+ @if $icon == "nav-at"
289
+ :background-position -2px (-3040px + $offset-y)
290
+
291
+ @if $icon == "nav-rss"
292
+ :background-position -2px (-3072px + $offset-y)
293
+
294
+ @if $icon == "nav-planet"
295
+ :background-position -2px (-3104px + $offset-y)
296
+
297
+ @if $icon == "text-font"
298
+ :background-position -2px (-3136px + $offset-y)
299
+
300
+ @if $icon == "text-paragraph"
301
+ :background-position -2px (-3168px + $offset-y)
302
+
303
+ @if $icon == "text-unitlist"
304
+ :background-position -2px (-3200px + $offset-y)
305
+
306
+ @if $icon == "text-underline"
307
+ :background-position -2px (-3232px + $offset-y)
308
+
309
+ @if $icon == "text-bold"
310
+ :background-position -2px (-3264px + $offset-y)
311
+
312
+ @if $icon == "text-italic"
313
+ :background-position -2px (-3296px + $offset-y)
314
+
315
+ @if $icon == "text-left"
316
+ :background-position -2px (-3328px + $offset-y)
317
+
318
+ @if $icon == "text-center"
319
+ :background-position -2px (-3360px + $offset-y)
320
+
321
+ @if $icon == "text-right"
322
+ :background-position -2px (-3392px + $offset-y)
323
+
324
+ @if $icon == "text-justify"
325
+ :background-position -2px (-3424px + $offset-y)
326
+
327
+ @if $icon == "text-quoteopen"
328
+ :background-position -2px (-3456px + $offset-y)
329
+
330
+ @if $icon == "text-quoteclose"
331
+ :background-position -2px (-3488px + $offset-y)
332
+
333
+ @if $icon == "office-file"
334
+ :background-position -2px (-3520px + $offset-y)
335
+
336
+ @if $icon == "office-folder"
337
+ :background-position -2px (-3552px + $offset-y)
338
+
339
+ @if $icon == "office-calendar"
340
+ :background-position -2px (-3584px + $offset-y)
341
+
342
+ @if $icon == "office-calendar2"
343
+ :background-position -2px (-3616px + $offset-y)
344
+
345
+ @if $icon == "office-calculator"
346
+ :background-position -2px (-3648px + $offset-y)
347
+
348
+ @if $icon == "office-pin"
349
+ :background-position -2px (-3680px + $offset-y)
350
+
351
+ @if $icon == "office-attach"
352
+ :background-position -2px (-3712px + $offset-y)
353
+
354
+ @if $icon == "office-key"
355
+ :background-position -2px (-3744px + $offset-y)
356
+
357
+ @if $icon == "office-flag"
358
+ :background-position -2px (-3776px + $offset-y)
359
+
360
+ @if $icon == "office-pencil"
361
+ :background-position -2px (-3808px + $offset-y)
362
+
363
+ @if $icon == "office-chart"
364
+ :background-position -2px (-3840px + $offset-y)
365
+
366
+ @if $icon == "office-briefcase"
367
+ :background-position -2px (-3872px + $offset-y)
368
+
369
+ @if $icon == "office-badge"
370
+ :background-position -2px (-3904px + $offset-y)
371
+
372
+ @if $icon == "office-filledfile"
373
+ :background-position -2px (-3936px + $offset-y)
374
+
375
+ @if $icon == "currency-euro"
376
+ :background-position -2px (-3968px + $offset-y)
377
+
378
+ @if $icon == "currency-dollar"
379
+ :background-position -2px (-4000px + $offset-y)
380
+
381
+ @if $icon == "currency-yen"
382
+ :background-position -2px (-4032px + $offset-y)
383
+
384
+ @if $icon == "currency-rouble"
385
+ :background-position -2px (-4064px + $offset-y)
Binary file
@@ -0,0 +1,12 @@
1
+ stylesheet 'screen.sass', :media => 'screen, projection'
2
+ description "Agile Toolkit Icon Set Compass Extension"
3
+
4
+ help %Q{
5
+ A way to use the awesome Agile Toolkit Icon Set within your project.
6
+ }
7
+
8
+ welcome_message %Q{
9
+ Refer to the stylesheet file for usage examples
10
+ }
11
+
12
+ image 'atk_icons.png'
@@ -0,0 +1,4 @@
1
+ @import "atk-icons"
2
+
3
+ span.delete
4
+ @include atk-icon-after("basic-ex")
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: atk_icons
3
+ version: !ruby/object:Gem::Version
4
+ hash: 25
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 1
10
+ version: 0.1.1
11
+ platform: ruby
12
+ authors:
13
+ - Stefano Verna
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-06-07 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ version_requirements: &id001 !ruby/object:Gem::Requirement
22
+ none: false
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ hash: 3
27
+ segments:
28
+ - 0
29
+ version: "0"
30
+ type: :runtime
31
+ requirement: *id001
32
+ prerelease: false
33
+ name: compass
34
+ - !ruby/object:Gem::Dependency
35
+ version_requirements: &id002 !ruby/object:Gem::Requirement
36
+ none: false
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ hash: 23
41
+ segments:
42
+ - 1
43
+ - 0
44
+ - 0
45
+ version: 1.0.0
46
+ type: :development
47
+ requirement: *id002
48
+ prerelease: false
49
+ name: bundler
50
+ - !ruby/object:Gem::Dependency
51
+ version_requirements: &id003 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ~>
55
+ - !ruby/object:Gem::Version
56
+ hash: 11
57
+ segments:
58
+ - 1
59
+ - 6
60
+ - 2
61
+ version: 1.6.2
62
+ type: :development
63
+ requirement: *id003
64
+ prerelease: false
65
+ name: jeweler
66
+ description: A way to use the awesome Agile Toolkit Icon Set within your Compass project.
67
+ email: stefano.verna@welaika.com
68
+ executables: []
69
+
70
+ extensions: []
71
+
72
+ extra_rdoc_files:
73
+ - LICENSE.txt
74
+ - README.md
75
+ files:
76
+ - .document
77
+ - Gemfile
78
+ - Gemfile.lock
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - VERSION
83
+ - atk_icons.gemspec
84
+ - lib/atk_icons.rb
85
+ - stylesheets/_atk-icons.sass
86
+ - stylesheets/atk-icons/_sprites.sass
87
+ - templates/project/atk_icons.png
88
+ - templates/project/manifest.rb
89
+ - templates/project/screen.sass
90
+ homepage: http://github.com/welaika/atk_icons
91
+ licenses:
92
+ - MIT
93
+ post_install_message:
94
+ rdoc_options: []
95
+
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ hash: 3
104
+ segments:
105
+ - 0
106
+ version: "0"
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ none: false
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ hash: 3
113
+ segments:
114
+ - 0
115
+ version: "0"
116
+ requirements: []
117
+
118
+ rubyforge_project:
119
+ rubygems_version: 1.8.5
120
+ signing_key:
121
+ specification_version: 3
122
+ summary: A way to use the awesome Agile Toolkit Icon Set within your Compass project.
123
+ test_files: []
124
+