compass-jquery-plugin 0.3.0.beta.25 → 0.3.0.beta.26
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/Rakefile +2 -2
- data/VERSION.yml +1 -1
- data/compass-jquery-plugin.gemspec +10 -9
- data/gem_tasks/jqtouch.rake +7 -18
- data/gem_tasks/jrails.rake +1 -1
- data/gem_tasks/mobile.rake +1 -1
- data/lib/jqtouch_theme.rb +26 -0
- data/lib/{jquery.mobile.rb → jquery_mobile_theme.rb} +0 -5
- data/lib/{jquery.ui.rb → jquery_ui_theme.rb} +0 -0
- data/templates/jqtouch/jquery/touch/apple.scss +160 -151
- metadata +12 -11
data/Rakefile
CHANGED
@@ -13,8 +13,8 @@ begin
|
|
13
13
|
gem.homepage = "http://github.com/kosmas58/compass-jquery-plugin"
|
14
14
|
gem.summary = "A compass plugin that integrates jRails, jQuery, jQuery UI and Themes, jqGrid and more into the Compass Sass framework."
|
15
15
|
gem.description = gem.summary
|
16
|
-
gem.add_dependency("haml", [">= 3.0.
|
17
|
-
gem.add_dependency("compass", [">= 0.10.
|
16
|
+
gem.add_dependency("haml", [">= 3.0.23"])
|
17
|
+
gem.add_dependency("compass", [">= 0.10.6"])
|
18
18
|
gem.add_dependency("ri_cal", [">= 0.8.7"])
|
19
19
|
gem.files.exclude("src/**/")
|
20
20
|
end
|
data/VERSION.yml
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{compass-jquery-plugin}
|
8
|
-
s.version = "0.3.0.beta.
|
8
|
+
s.version = "0.3.0.beta.26"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Kosmas Schuetz"]
|
@@ -41,9 +41,8 @@ Gem::Specification.new do |s|
|
|
41
41
|
"lib/google-compiler-20100917.jar",
|
42
42
|
"lib/handle_attributes.rb",
|
43
43
|
"lib/handle_js_files.rb",
|
44
|
-
"lib/
|
44
|
+
"lib/jqtouch_theme.rb",
|
45
45
|
"lib/jquery.rb",
|
46
|
-
"lib/jquery.ui.rb",
|
47
46
|
"lib/jquery/compass_plugin.rb",
|
48
47
|
"lib/jquery/dynatree.rb",
|
49
48
|
"lib/jquery/emulators.rb",
|
@@ -76,6 +75,8 @@ Gem::Specification.new do |s|
|
|
76
75
|
"lib/jquery/secret_sauce/helpers/ui_grid_helper.rb",
|
77
76
|
"lib/jquery/secret_sauce/model/find_for_grid.rb",
|
78
77
|
"lib/jquery/tools.rb",
|
78
|
+
"lib/jquery_mobile_theme.rb",
|
79
|
+
"lib/jquery_ui_theme.rb",
|
79
80
|
"lib/js.jar",
|
80
81
|
"lib/jslint-check.js",
|
81
82
|
"lib/jslint.js",
|
@@ -1447,17 +1448,17 @@ Gem::Specification.new do |s|
|
|
1447
1448
|
s.specification_version = 3
|
1448
1449
|
|
1449
1450
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
1450
|
-
s.add_runtime_dependency(%q<haml>, [">= 3.0.
|
1451
|
-
s.add_runtime_dependency(%q<compass>, [">= 0.10.
|
1451
|
+
s.add_runtime_dependency(%q<haml>, [">= 3.0.23"])
|
1452
|
+
s.add_runtime_dependency(%q<compass>, [">= 0.10.6"])
|
1452
1453
|
s.add_runtime_dependency(%q<ri_cal>, [">= 0.8.7"])
|
1453
1454
|
else
|
1454
|
-
s.add_dependency(%q<haml>, [">= 3.0.
|
1455
|
-
s.add_dependency(%q<compass>, [">= 0.10.
|
1455
|
+
s.add_dependency(%q<haml>, [">= 3.0.23"])
|
1456
|
+
s.add_dependency(%q<compass>, [">= 0.10.6"])
|
1456
1457
|
s.add_dependency(%q<ri_cal>, [">= 0.8.7"])
|
1457
1458
|
end
|
1458
1459
|
else
|
1459
|
-
s.add_dependency(%q<haml>, [">= 3.0.
|
1460
|
-
s.add_dependency(%q<compass>, [">= 0.10.
|
1460
|
+
s.add_dependency(%q<haml>, [">= 3.0.23"])
|
1461
|
+
s.add_dependency(%q<compass>, [">= 0.10.6"])
|
1461
1462
|
s.add_dependency(%q<ri_cal>, [">= 0.8.7"])
|
1462
1463
|
end
|
1463
1464
|
end
|
data/gem_tasks/jqtouch.rake
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
require 'fileutils'
|
2
2
|
require 'lib/handle_js_files'
|
3
|
+
require 'lib/jqtouch_theme'
|
3
4
|
|
4
5
|
JQTOUCH_SRC = File.join(GEM_ROOT, 'src', 'jqtouch')
|
5
6
|
JQTOUCH_SRC_STYLESHEETS = File.join(JQTOUCH_SRC, 'css')
|
@@ -11,9 +12,6 @@ JQTOUCH_DEST_STYLESHEETS = File.join(JQTOUCH_DEST_TEMPLATES, 'jquery', 'touch')
|
|
11
12
|
JQTOUCH_DEST_THEMES = File.join(JQTOUCH_DEST_STYLESHEETS)
|
12
13
|
JQTOUCH_DEST_IMAGES = File.join(JQTOUCH_DEST_STYLESHEETS)
|
13
14
|
|
14
|
-
JQTOUCH_MESSAGE1 = "# Generated by compass-jquery-plugin/gem-tasks/jqtouch.rake\n# Install with: compass install jquery/jqtouch\n\n"
|
15
|
-
JQTOUCH_MESSAGE2 = "// Generated by compass-jquery-plugin/gem-tasks/jqtouch.rake\n\n"
|
16
|
-
|
17
15
|
all_scripts = [
|
18
16
|
'js/jqtouch.js',
|
19
17
|
'js/jqtouch.transitions.js',
|
@@ -80,7 +78,7 @@ namespace :build do
|
|
80
78
|
manifest.print "javascript 'jquery.jqtouch.min.js'\n"
|
81
79
|
|
82
80
|
# Stylesheets
|
83
|
-
FileUtils.mkdir_p(JQTOUCH_DEST_STYLESHEETS)
|
81
|
+
FileUtils.mkdir_p(JQTOUCH_DEST_STYLESHEETS)
|
84
82
|
|
85
83
|
open File.join(JQTOUCH_DEST_STYLESHEETS, 'jqtouch.scss'), 'w' do |f|
|
86
84
|
sass = JQTOUCH_MESSAGE2
|
@@ -146,24 +144,15 @@ namespace :build do
|
|
146
144
|
# jQuery jQTouch Themes
|
147
145
|
|
148
146
|
FileUtils.mkdir_p(JQTOUCH_DEST_THEMES)
|
149
|
-
|
147
|
+
jqtouch = JqTouchTheme.new()
|
148
|
+
|
150
149
|
Dir.foreach JQTOUCH_SRC_THEMES do |theme|
|
151
150
|
next if /^\./ =~ theme
|
152
|
-
|
153
|
-
|
154
|
-
Dir.foreach File.join(JQTOUCH_SRC_THEMES, "#{theme}") do |file|
|
155
|
-
next unless /\.css$/ =~ file
|
156
|
-
css = File.read File.join(JQTOUCH_SRC_THEMES, "#{theme}", file)
|
157
|
-
sass = ''
|
158
|
-
IO.popen("sass-convert -F css -T scss", 'r+') { |f| f.print(css); f.close_write; sass = f.read }
|
159
|
-
open File.join(JQTOUCH_DEST_THEMES, "#{theme}.scss"), 'w' do |f|
|
160
|
-
f.write JQTOUCH_MESSAGE2 + sass
|
161
|
-
end
|
162
|
-
manifest.print "stylesheet 'jquery/touch/#{theme}.scss'\n"
|
163
|
-
end
|
151
|
+
jqtouch.convert_theme(theme, File.join(JQTOUCH_SRC_THEMES, theme), File.join(JQTOUCH_DEST_THEMES))
|
152
|
+
manifest.print "stylesheet 'jquery/touch/#{theme}.scss'\n"
|
164
153
|
|
165
154
|
# Copy the theme images directory
|
166
|
-
src_dir = File.join(JQTOUCH_SRC_THEMES, theme, '
|
155
|
+
src_dir = File.join(JQTOUCH_SRC_THEMES, theme, 'img')
|
167
156
|
dest_dir = File.join(JQTOUCH_DEST_IMAGES, "#{theme}")
|
168
157
|
FileUtils.mkdir_p dest_dir
|
169
158
|
|
data/gem_tasks/jrails.rake
CHANGED
data/gem_tasks/mobile.rake
CHANGED
@@ -0,0 +1,26 @@
|
|
1
|
+
JQTOUCH_MESSAGE1 = "# Generated by compass-jquery-plugin/gem-tasks/jqtouch.rake\n# Install with: compass install jquery/jqtouch\n\n"
|
2
|
+
JQTOUCH_MESSAGE2 = "// Generated by compass-jquery-plugin/gem-tasks/jqtouch.rake\n\n"
|
3
|
+
|
4
|
+
class JqTouchTheme
|
5
|
+
|
6
|
+
# Initialize with the base theme
|
7
|
+
def initialize
|
8
|
+
@theme_filename = "theme.css"
|
9
|
+
end
|
10
|
+
|
11
|
+
# Create a sass file of variables names and copy the images
|
12
|
+
def convert_theme(name, dir, stylesheets)
|
13
|
+
theme = File.read(File.join(dir, @theme_filename))
|
14
|
+
|
15
|
+
# Fix stuff
|
16
|
+
theme.gsub!(/\;filter:Alpha/, "; filter: Alpha")
|
17
|
+
theme.gsub! /url\(img(.+?)\)/, "image_url(\"jquery/touch/#{name}\\1\")"
|
18
|
+
|
19
|
+
# Convert the stylesheet
|
20
|
+
open File.join(JQTOUCH_DEST_THEMES, "#{name}.scss"), 'w' do |f|
|
21
|
+
sass = JQTOUCH_MESSAGE2
|
22
|
+
IO.popen("sass-convert -F css -T scss", 'r+') { |ff| ff.print(theme); ff.close_write; sass += ff.read }
|
23
|
+
f.print sass
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -3,11 +3,6 @@ MOBILE_MESSAGE2 = "// Generated by compass-jquery-plugin/gem-tasks/mobile.rake\n
|
|
3
3
|
|
4
4
|
class JqueryMobileTheme
|
5
5
|
|
6
|
-
VARIABLE_NAME_BASE = 'mobile_'
|
7
|
-
VARIABLE_MATCHER = /(\S*)\/\*\{(\w*)\}\*\//
|
8
|
-
|
9
|
-
attr_accessor :base_theme
|
10
|
-
|
11
6
|
# Initialize with the base theme
|
12
7
|
def initialize(base_theme_directory)
|
13
8
|
@prefix = 'jquery.mobile'
|
File without changes
|
@@ -134,17 +134,28 @@ body {
|
|
134
134
|
a {
|
135
135
|
-webkit-border-bottom-left-radius: 8px;
|
136
136
|
-webkit-border-bottom-right-radius: 8px; } } }
|
137
|
-
ul
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
137
|
+
ul {
|
138
|
+
li.arrow {
|
139
|
+
background-image: image_url("jquery/touch/apple/chevron.png");
|
140
|
+
background-position: right center;
|
141
|
+
background-repeat: no-repeat;
|
142
|
+
a {
|
143
|
+
padding: 12px 22px 12px 10px; } }
|
144
|
+
&.plastic li.arrow, &.metal li.arrow {
|
145
|
+
background-image: image_url("jquery/touch/apple/chevron.png");
|
146
|
+
background-position: right center;
|
147
|
+
background-repeat: no-repeat; }
|
148
|
+
li a {
|
149
|
+
color: #000;
|
150
|
+
text-decoration: none;
|
151
|
+
text-overflow: ellipsis;
|
152
|
+
white-space: nowrap;
|
153
|
+
overflow: hidden;
|
154
|
+
display: block;
|
155
|
+
padding: 12px 10px 12px 10px;
|
156
|
+
margin: -10px;
|
157
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); } }
|
158
|
+
li.img a + a {
|
148
159
|
color: #000;
|
149
160
|
text-decoration: none;
|
150
161
|
text-overflow: ellipsis;
|
@@ -279,162 +290,160 @@ body {
|
|
279
290
|
font-size: 16px;
|
280
291
|
margin: 1px 0 0 0;
|
281
292
|
padding: 2px 10px;
|
282
|
-
text-shadow: #636a6f 0 1px 0; }
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
margin: 0;
|
292
|
-
padding: 0;
|
293
|
-
background-color: rgb(255, 255, 255); }
|
294
|
-
.metal {
|
293
|
+
text-shadow: #636a6f 0 1px 0; }
|
294
|
+
h4 {
|
295
|
+
color: #fff;
|
296
|
+
background: rgb(154, 159, 170) image_url("jquery/touch/apple/listGroup.png") top left repeat-x;
|
297
|
+
border-top: 1px solid rgb(165, 177, 186);
|
298
|
+
text-shadow: #666 0 1px 0;
|
299
|
+
margin: 0;
|
300
|
+
padding: 2px 10px; } } }
|
301
|
+
.edgetoedge, .metal {
|
295
302
|
margin: 0;
|
296
303
|
padding: 0;
|
297
304
|
background-color: rgb(255, 255, 255); }
|
298
|
-
|
299
|
-
|
300
|
-
margin: 0;
|
301
|
-
border-left: 0;
|
302
|
-
border-right: 0;
|
303
|
-
border-top: 0; }
|
304
|
-
.metal ul {
|
305
|
-
border-top: 0;
|
306
|
-
border-bottom: 0;
|
307
|
-
background: rgb(180, 180, 180); }
|
308
|
-
.edgetoedge ul li {
|
309
|
-
&:first-child, &:last-child {
|
305
|
+
ul {
|
306
|
+
&.edgetoedge, &.metal, &.plastic {
|
310
307
|
-webkit-border-radius: 0;
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
308
|
+
margin: 0;
|
309
|
+
border-left: 0;
|
310
|
+
border-right: 0;
|
311
|
+
border-top: 0; }
|
312
|
+
&.metal {
|
313
|
+
border-top: 0;
|
314
|
+
border-bottom: 0;
|
315
|
+
background: rgb(180, 180, 180); }
|
316
|
+
&.edgetoedge li {
|
317
|
+
&:first-child, &:last-child {
|
318
|
+
-webkit-border-radius: 0;
|
319
|
+
a {
|
320
|
+
-webkit-border-radius: 0; } } }
|
321
|
+
&.metal li {
|
322
|
+
&:first-child a, &:last-child a {
|
323
|
+
-webkit-border-radius: 0; } }
|
324
|
+
&.edgetoedge li {
|
325
|
+
small {
|
326
|
+
font-size: 16px;
|
327
|
+
line-height: 28px; }
|
321
328
|
-webkit-border-radius: 0; } }
|
322
329
|
.metal li {
|
323
330
|
-webkit-border-radius: 0; }
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
331
|
+
ul {
|
332
|
+
&.edgetoedge {
|
333
|
+
li em {
|
334
|
+
font-weight: normal;
|
335
|
+
font-style: normal; }
|
336
|
+
h4 + ul {
|
337
|
+
border-top: 1px solid rgb(152, 158, 164);
|
338
|
+
border-bottom: 1px solid rgb(113, 125, 133); } }
|
339
|
+
li {
|
340
|
+
small {
|
341
|
+
color: #369;
|
342
|
+
font: 17px "Helvetica Neue", Helvetica;
|
343
|
+
text-align: right;
|
344
|
+
text-overflow: ellipsis;
|
345
|
+
white-space: nowrap;
|
346
|
+
overflow: hidden;
|
347
|
+
display: block;
|
348
|
+
width: 23%;
|
349
|
+
float: right;
|
350
|
+
padding: 3px 0px; }
|
351
|
+
&.arrow small {
|
352
|
+
padding: 0 15px; }
|
353
|
+
small.counter {
|
354
|
+
font-size: 17px !important;
|
355
|
+
line-height: 13px !important;
|
356
|
+
font-weight: bold;
|
357
|
+
background: rgb(154, 159, 170);
|
358
|
+
color: #fff;
|
359
|
+
-webkit-border-radius: 11px;
|
360
|
+
padding: 4px 10px 5px 10px;
|
361
|
+
display: inline !important;
|
362
|
+
width: auto;
|
363
|
+
margin-top: -22px; }
|
364
|
+
&.arrow small.counter {
|
365
|
+
margin-right: 15px; } } }
|
358
366
|
#plastic ul li.arrow, #metal ul li.arrow {
|
359
367
|
background-image: image_url("jquery/touch/apple/chevron.png");
|
360
368
|
background-position: right center;
|
361
369
|
background-repeat: no-repeat; }
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
border-left: 0;
|
366
|
-
border-right: 0;
|
367
|
-
border-top: 0; }
|
368
|
-
.metal ul li {
|
369
|
-
border-top: 1px solid rgb(238, 238, 238);
|
370
|
-
border-bottom: 1px solid rgb(156, 158, 165);
|
371
|
-
font-size: 26px;
|
372
|
-
text-shadow: #fff 0 1px 0;
|
373
|
-
a {
|
374
|
-
line-height: 26px;
|
370
|
+
ul {
|
371
|
+
&.edgetoedge, &.metal, &.plastic {
|
372
|
+
-webkit-border-radius: 0;
|
375
373
|
margin: 0;
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
374
|
+
border-left: 0;
|
375
|
+
border-right: 0;
|
376
|
+
border-top: 0; }
|
377
|
+
&.metal li {
|
378
|
+
border-top: 1px solid rgb(238, 238, 238);
|
379
|
+
border-bottom: 1px solid rgb(156, 158, 165);
|
380
|
+
font-size: 26px;
|
381
|
+
text-shadow: #fff 0 1px 0;
|
382
|
+
a {
|
383
|
+
line-height: 26px;
|
384
|
+
margin: 0;
|
385
|
+
padding: 13px 0;
|
386
|
+
&:hover {
|
387
|
+
color: rgb(0, 0, 0); } }
|
388
|
+
&:hover small {
|
389
|
+
color: inherit; }
|
390
|
+
a em {
|
391
|
+
display: block;
|
392
|
+
font-size: 14px;
|
393
|
+
font-style: normal;
|
394
|
+
color: #444;
|
395
|
+
width: 50%;
|
396
|
+
line-height: 14px; }
|
397
|
+
small {
|
398
|
+
float: right;
|
399
|
+
position: relative;
|
400
|
+
margin-top: 10px;
|
401
|
+
font-weight: bold; }
|
402
|
+
&.arrow {
|
403
|
+
a small {
|
404
|
+
padding-right: 0;
|
405
|
+
line-height: 17px; }
|
406
|
+
background: image_url("jquery/touch/apple/chevron.png") right center no-repeat; } } }
|
398
407
|
.plastic {
|
399
408
|
margin: 0;
|
400
409
|
padding: 0;
|
401
|
-
background: rgb(173, 173, 173);
|
402
|
-
|
410
|
+
background: rgb(173, 173, 173); }
|
411
|
+
ul.plastic {
|
412
|
+
-webkit-border-radius: 0;
|
413
|
+
margin: 0;
|
414
|
+
border-left: 0;
|
415
|
+
border-right: 0;
|
416
|
+
border-top: 0;
|
417
|
+
background-color: rgb(173, 173, 173);
|
418
|
+
li {
|
403
419
|
-webkit-border-radius: 0;
|
404
|
-
|
405
|
-
border-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
small {
|
432
|
-
color: #3C3C3C;
|
433
|
-
text-shadow: rgb(211, 211, 211) 0 1px 0;
|
434
|
-
font-size: 13px;
|
435
|
-
font-weight: bold;
|
436
|
-
text-transform: uppercase;
|
437
|
-
line-height: 24px; } } } }
|
420
|
+
border-top: 1px solid rgb(191, 191, 191);
|
421
|
+
border-bottom: 1px solid rgb(157, 157, 157);
|
422
|
+
&:nth-child(odd) {
|
423
|
+
background-color: rgb(152, 152, 152);
|
424
|
+
border-top: 1px solid rgb(181, 181, 181);
|
425
|
+
border-bottom: 1px solid rgb(138, 138, 138); } }
|
426
|
+
+ p {
|
427
|
+
font-size: 11px;
|
428
|
+
color: #2f3237;
|
429
|
+
text-shadow: none;
|
430
|
+
padding: 10px 10px;
|
431
|
+
strong {
|
432
|
+
font-size: 14px;
|
433
|
+
line-height: 18px;
|
434
|
+
text-shadow: #fff 0 1px 0; } }
|
435
|
+
li {
|
436
|
+
a {
|
437
|
+
text-shadow: rgb(211, 211, 211) 0 1px 0; }
|
438
|
+
&:nth-child(odd) a {
|
439
|
+
text-shadow: rgb(191, 191, 191) 0 1px 0; }
|
440
|
+
small {
|
441
|
+
color: #3C3C3C;
|
442
|
+
text-shadow: rgb(211, 211, 211) 0 1px 0;
|
443
|
+
font-size: 13px;
|
444
|
+
font-weight: bold;
|
445
|
+
text-transform: uppercase;
|
446
|
+
line-height: 24px; } } }
|
438
447
|
#plastic ul {
|
439
448
|
&.minibanner {
|
440
449
|
margin: 10px;
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-jquery-plugin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 62196391
|
5
5
|
prerelease: true
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
9
|
- 0
|
10
10
|
- beta
|
11
|
-
-
|
12
|
-
version: 0.3.0.beta.
|
11
|
+
- 26
|
12
|
+
version: 0.3.0.beta.26
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Kosmas Schuetz
|
@@ -28,12 +28,12 @@ dependencies:
|
|
28
28
|
requirements:
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
hash:
|
31
|
+
hash: 41
|
32
32
|
segments:
|
33
33
|
- 3
|
34
34
|
- 0
|
35
|
-
-
|
36
|
-
version: 3.0.
|
35
|
+
- 23
|
36
|
+
version: 3.0.23
|
37
37
|
type: :runtime
|
38
38
|
version_requirements: *id001
|
39
39
|
- !ruby/object:Gem::Dependency
|
@@ -44,12 +44,12 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
hash:
|
47
|
+
hash: 59
|
48
48
|
segments:
|
49
49
|
- 0
|
50
50
|
- 10
|
51
|
-
-
|
52
|
-
version: 0.10.
|
51
|
+
- 6
|
52
|
+
version: 0.10.6
|
53
53
|
type: :runtime
|
54
54
|
version_requirements: *id002
|
55
55
|
- !ruby/object:Gem::Dependency
|
@@ -102,9 +102,8 @@ files:
|
|
102
102
|
- lib/google-compiler-20100917.jar
|
103
103
|
- lib/handle_attributes.rb
|
104
104
|
- lib/handle_js_files.rb
|
105
|
-
- lib/
|
105
|
+
- lib/jqtouch_theme.rb
|
106
106
|
- lib/jquery.rb
|
107
|
-
- lib/jquery.ui.rb
|
108
107
|
- lib/jquery/compass_plugin.rb
|
109
108
|
- lib/jquery/dynatree.rb
|
110
109
|
- lib/jquery/emulators.rb
|
@@ -137,6 +136,8 @@ files:
|
|
137
136
|
- lib/jquery/secret_sauce/helpers/ui_grid_helper.rb
|
138
137
|
- lib/jquery/secret_sauce/model/find_for_grid.rb
|
139
138
|
- lib/jquery/tools.rb
|
139
|
+
- lib/jquery_mobile_theme.rb
|
140
|
+
- lib/jquery_ui_theme.rb
|
140
141
|
- lib/js.jar
|
141
142
|
- lib/jslint-check.js
|
142
143
|
- lib/jslint.js
|