compass-jquery-plugin 0.3.0.beta.25 → 0.3.0.beta.26

Sign up to get free protection for your applications and to get access to all the features.
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.4"])
17
- gem.add_dependency("compass", [">= 0.10.1"])
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
@@ -1,5 +1,5 @@
1
1
  ---
2
- :commit: beta.25
2
+ :commit: beta.26
3
3
  :patch: 0
4
4
  :minor: 3
5
5
  :major: 0
@@ -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.25"
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/jquery.mobile.rb",
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.4"])
1451
- s.add_runtime_dependency(%q<compass>, [">= 0.10.1"])
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.4"])
1455
- s.add_dependency(%q<compass>, [">= 0.10.1"])
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.4"])
1460
- s.add_dependency(%q<compass>, [">= 0.10.1"])
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
@@ -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
- # Convert the stylesheets
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, 'images')
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
 
@@ -1,6 +1,6 @@
1
1
  require 'fileutils'
2
2
  require 'lib/handle_js_files'
3
- require 'lib/jquery.ui'
3
+ require 'lib/jquery_ui_theme'
4
4
 
5
5
  # Compass generator for jrails 0.1+
6
6
  SRC = File.join(GEM_ROOT, 'src', 'jrails')
@@ -1,6 +1,6 @@
1
1
  require 'fileutils'
2
2
  require 'lib/handle_js_files'
3
- require 'lib/jquery.mobile'
3
+ require 'lib/jquery_mobile_theme'
4
4
 
5
5
  MOBILE_SRC = File.join(GEM_ROOT, 'src', 'mobile')
6
6
  MOBILE_SRC_IMAGES = File.join(MOBILE_SRC, 'images')
@@ -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 li.arrow {
138
- background-image: image_url("jquery/touch/apple/chevron.png");
139
- background-position: right center;
140
- background-repeat: no-repeat;
141
- a {
142
- padding: 12px 22px 12px 10px; } }
143
- #plastic ul li.arrow, #metal ul li.arrow {
144
- background-image: image_url("jquery/touch/apple/chevron.png");
145
- background-position: right center;
146
- background-repeat: no-repeat; }
147
- ul li a, li.img a + a {
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
- .edgetoedge {
284
- h4 {
285
- color: #fff;
286
- background: rgb(154, 159, 170) image_url("jquery/touch/apple/listGroup.png") top left repeat-x;
287
- border-top: 1px solid rgb(165, 177, 186);
288
- text-shadow: #666 0 1px 0;
289
- margin: 0;
290
- padding: 2px 10px; }
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
- .edgetoedge ul, .metal ul, .plastic ul {
299
- -webkit-border-radius: 0;
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
- a {
312
- -webkit-border-radius: 0; } } }
313
- .metal ul li {
314
- &:first-child a, &:last-child a {
315
- -webkit-border-radius: 0; } }
316
- .edgetoedge {
317
- ul li small {
318
- font-size: 16px;
319
- line-height: 28px; }
320
- li {
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
- .edgetoedge {
325
- li em {
326
- font-weight: normal;
327
- font-style: normal; }
328
- h4 + ul {
329
- border-top: 1px solid rgb(152, 158, 164);
330
- border-bottom: 1px solid rgb(113, 125, 133); } }
331
- ul li {
332
- small {
333
- color: #369;
334
- font: 17px "Helvetica Neue", Helvetica;
335
- text-align: right;
336
- text-overflow: ellipsis;
337
- white-space: nowrap;
338
- overflow: hidden;
339
- display: block;
340
- width: 23%;
341
- float: right;
342
- padding: 3px 0px; }
343
- &.arrow small {
344
- padding: 0 15px; }
345
- small.counter {
346
- font-size: 17px !important;
347
- line-height: 13px !important;
348
- font-weight: bold;
349
- background: rgb(154, 159, 170);
350
- color: #fff;
351
- -webkit-border-radius: 11px;
352
- padding: 4px 10px 5px 10px;
353
- display: inline !important;
354
- width: auto;
355
- margin-top: -22px; }
356
- &.arrow small.counter {
357
- margin-right: 15px; } }
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
- .edgetoedge ul, .metal ul, .plastic ul {
363
- -webkit-border-radius: 0;
364
- margin: 0;
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
- padding: 13px 0;
377
- &:hover {
378
- color: rgb(0, 0, 0); } }
379
- &:hover small {
380
- color: inherit; }
381
- a em {
382
- display: block;
383
- font-size: 14px;
384
- font-style: normal;
385
- color: #444;
386
- width: 50%;
387
- line-height: 14px; }
388
- small {
389
- float: right;
390
- position: relative;
391
- margin-top: 10px;
392
- font-weight: bold; }
393
- &.arrow {
394
- a small {
395
- padding-right: 0;
396
- line-height: 17px; }
397
- background: image_url("jquery/touch/apple/chevron.png") right center no-repeat; } }
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
- ul {
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
- margin: 0;
405
- border-left: 0;
406
- border-right: 0;
407
- border-top: 0;
408
- background-color: rgb(173, 173, 173);
409
- li {
410
- -webkit-border-radius: 0;
411
- border-top: 1px solid rgb(191, 191, 191);
412
- border-bottom: 1px solid rgb(157, 157, 157);
413
- &:nth-child(odd) {
414
- background-color: rgb(152, 152, 152);
415
- border-top: 1px solid rgb(181, 181, 181);
416
- border-bottom: 1px solid rgb(138, 138, 138); } }
417
- + p {
418
- font-size: 11px;
419
- color: #2f3237;
420
- text-shadow: none;
421
- padding: 10px 10px;
422
- strong {
423
- font-size: 14px;
424
- line-height: 18px;
425
- text-shadow: #fff 0 1px 0; } }
426
- li {
427
- a {
428
- text-shadow: rgb(211, 211, 211) 0 1px 0; }
429
- &:nth-child(odd) a {
430
- text-shadow: rgb(191, 191, 191) 0 1px 0; }
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: 62196385
4
+ hash: 62196391
5
5
  prerelease: true
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
9
  - 0
10
10
  - beta
11
- - 25
12
- version: 0.3.0.beta.25
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: 15
31
+ hash: 41
32
32
  segments:
33
33
  - 3
34
34
  - 0
35
- - 4
36
- version: 3.0.4
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: 53
47
+ hash: 59
48
48
  segments:
49
49
  - 0
50
50
  - 10
51
- - 1
52
- version: 0.10.1
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/jquery.mobile.rb
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