compass-jquery-plugin 0.3.0.beta.20 → 0.3.0.beta.21
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.textile +2 -2
- data/VERSION.yml +1 -1
- data/compass-jquery-plugin.gemspec +2 -2
- data/gem_tasks/jrails.rake +2 -0
- data/templates/jqgrid/jquery.jqGrid.js +11565 -11565
- data/templates/jqgrid/jquery.jqGrid.min.js +472 -472
- data/templates/jrails/config/initializers/jrails.rb +38 -38
- data/templates/jrails/i18n/jquery.ui/datepicker-kz.js +23 -23
- data/templates/jrails/i18n/jquery.ui/datepicker-kz.min.js +4 -4
- data/templates/jrails/jquery-ui-1.8.5.js +563 -0
- data/templates/jrails/jquery-ui-1.8.5.min.js +790 -768
- data/templates/jrails/jquery.themeswitchertool.js +190 -190
- data/templates/jrails/jquery.themeswitchertool.min.js +7 -7
- data/templates/jrails/jquery.ui/_theme.scss +95 -0
- data/templates/jrails/manifest.rb +586 -586
- metadata +4 -4
data/README.textile
CHANGED
@@ -8,11 +8,11 @@ h2. Description
|
|
8
8
|
|
9
9
|
A Sass-based Meta-Framework for Compass that allows you to mix and match any of the following:
|
10
10
|
|
11
|
-
* jRails with jQuery 1.4.2 and jQuery.UI 1.8.
|
11
|
+
* jRails with jQuery 1.4.2 and jQuery.UI 1.8.5 including themes
|
12
12
|
* jquery.jstree.js V1.0rc2
|
13
13
|
* jquery.dynatree.js V0.5.3
|
14
14
|
* jquery.ribbon.js
|
15
|
-
* jquery.jqGrid.js V3.8
|
15
|
+
* jquery.jqGrid.js V3.8 (with minor changes to make in RESTful)
|
16
16
|
* jquery.jqtouch.js V1.0b2
|
17
17
|
|
18
18
|
This library requires <b>"Compass":http://wiki.github.com/chriseppstein/compass</b>.
|
data/VERSION.yml
CHANGED
@@ -5,11 +5,11 @@
|
|
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.21"
|
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"]
|
12
|
-
s.date = %q{2010-09-
|
12
|
+
s.date = %q{2010-09-21}
|
13
13
|
s.description = %q{A compass plugin that integrates jRails, jQuery, jQuery UI and Themes, jqGrid and more into the Compass Sass framework.}
|
14
14
|
s.email = %q{kosmas.schuetz@gmx.com}
|
15
15
|
s.extra_rdoc_files = [
|
data/gem_tasks/jrails.rake
CHANGED
@@ -209,6 +209,7 @@ namespace :build do
|
|
209
209
|
'jquery.ui.progressbar.js',
|
210
210
|
'jquery.ui.resizable.js',
|
211
211
|
'jquery.ui.selectable.js',
|
212
|
+
'jquery.ui.selectmenu.js',
|
212
213
|
'jquery.ui.slider.js',
|
213
214
|
'jquery.ui.sortable.js',
|
214
215
|
'jquery.ui.tabs.js',
|
@@ -261,6 +262,7 @@ namespace :build do
|
|
261
262
|
'_progressbar.scss',
|
262
263
|
'_resizable.scss',
|
263
264
|
'_selectable.scss',
|
265
|
+
'_selectmenu.scss',
|
264
266
|
'_slider.scss',
|
265
267
|
'_tabs.scss',
|
266
268
|
'_theme.scss'
|