ultimate-base 0.2.3.2 → 0.2.4
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/Gemfile.lock +1 -1
- data/LICENSE +18 -4
- data/README.md +24 -0
- data/app/assets/javascripts/ultimate/backbone/extra/jquery-ext.js.coffee +8 -6
- data/app/assets/javascripts/ultimate/backbone/extra/jquery-plugin-adapter.js.coffee +11 -17
- data/app/assets/javascripts/ultimate/backbone/view.js.coffee +40 -4
- data/app/assets/javascripts/ultimate/backbone/views/slider.js.coffee +1 -1
- data/app/assets/javascripts/ultimate/backbone/views/typed-fields.js.coffee +4 -3
- data/app/assets/javascripts/ultimate/base.js.coffee +25 -30
- data/app/assets/javascripts/ultimate/helpers.js.coffee +34 -34
- data/app/assets/javascripts/ultimate/improves/i18n-lite.js.coffee +14 -0
- data/app/assets/javascripts/ultimate/underscore/underscore.js +143 -98
- data/app/assets/javascripts/ultimate/underscore/underscore.string.js +347 -237
- data/app/assets/stylesheets/ultimate/mixins/{_routines.css.scss → _routines.scss} +0 -0
- data/app/assets/stylesheets/ultimate/mixins/{_vendors.css.scss → _vendors.scss} +0 -0
- data/app/assets/stylesheets/ultimate/mixins/css3.scss +1 -1
- data/app/assets/stylesheets/ultimate/mixins/{decor.css.scss → decor.scss} +0 -0
- data/app/assets/stylesheets/ultimate/mixins/{fonts.css.scss → fonts.scss} +0 -0
- data/app/assets/stylesheets/ultimate/mixins/{microstructures.css.scss → microstructures.scss} +0 -0
- data/app/assets/stylesheets/ultimate/structures/{slider.css.scss → slider.scss} +1 -1
- data/lib/ultimate-base/version.rb +1 -1
- metadata +9 -8
File without changes
|
File without changes
|
@@ -241,7 +241,7 @@ $boxsizing-url: asset-url("polyfills/boxsizing.htc", '') !default;
|
|
241
241
|
// For rgba()
|
242
242
|
@mixin pie-bg($bg) {
|
243
243
|
background: $bg;
|
244
|
-
@if $pie-url {
|
244
|
+
@if $support-ie and $pie-url and type-of($bg) == "color" and alpha($bg) < 1 {
|
245
245
|
-pie-background: $bg;
|
246
246
|
}
|
247
247
|
}
|
File without changes
|
File without changes
|
data/app/assets/stylesheets/ultimate/mixins/{microstructures.css.scss → microstructures.scss}
RENAMED
File without changes
|
@@ -45,7 +45,7 @@
|
|
45
45
|
position: absolute;
|
46
46
|
top: 0;
|
47
47
|
@if $nav_sprite {
|
48
|
-
background:
|
48
|
+
background: asset-data-url($nav_sprite) 1000px center no-repeat;
|
49
49
|
}
|
50
50
|
@include _slider__nav(prev, $nav_width);
|
51
51
|
@include _slider__nav(next, $nav_width);
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ultimate-base
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-08-
|
12
|
+
date: 2012-08-17 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Ultimate UI core, base helpers and improves for Ruby on Rails Front-end
|
15
15
|
email:
|
@@ -54,6 +54,7 @@ files:
|
|
54
54
|
- app/assets/javascripts/ultimate/improves/datepicker.js.coffee
|
55
55
|
- app/assets/javascripts/ultimate/improves/form-errors.js.coffee
|
56
56
|
- app/assets/javascripts/ultimate/improves/form.js.coffee
|
57
|
+
- app/assets/javascripts/ultimate/improves/i18n-lite.js.coffee
|
57
58
|
- app/assets/javascripts/ultimate/improves/magic-radios.js.coffee
|
58
59
|
- app/assets/javascripts/ultimate/improves/tablesorter.js
|
59
60
|
- app/assets/javascripts/ultimate/improves/typed-fields.js.coffee
|
@@ -66,14 +67,14 @@ files:
|
|
66
67
|
- app/assets/javascripts/ultimate/widgets/widget.js.coffee
|
67
68
|
- app/assets/stylesheets/polyfills/PIE.htc
|
68
69
|
- app/assets/stylesheets/polyfills/boxsizing.htc
|
69
|
-
- app/assets/stylesheets/ultimate/mixins/_routines.
|
70
|
-
- app/assets/stylesheets/ultimate/mixins/_vendors.
|
70
|
+
- app/assets/stylesheets/ultimate/mixins/_routines.scss
|
71
|
+
- app/assets/stylesheets/ultimate/mixins/_vendors.scss
|
71
72
|
- app/assets/stylesheets/ultimate/mixins/css3.scss
|
72
73
|
- app/assets/stylesheets/ultimate/mixins/css3/_text-shadow.scss
|
73
|
-
- app/assets/stylesheets/ultimate/mixins/decor.
|
74
|
-
- app/assets/stylesheets/ultimate/mixins/fonts.
|
75
|
-
- app/assets/stylesheets/ultimate/mixins/microstructures.
|
76
|
-
- app/assets/stylesheets/ultimate/structures/slider.
|
74
|
+
- app/assets/stylesheets/ultimate/mixins/decor.scss
|
75
|
+
- app/assets/stylesheets/ultimate/mixins/fonts.scss
|
76
|
+
- app/assets/stylesheets/ultimate/mixins/microstructures.scss
|
77
|
+
- app/assets/stylesheets/ultimate/structures/slider.scss
|
77
78
|
- lib/ultimate-base.rb
|
78
79
|
- lib/ultimate-base/engine.rb
|
79
80
|
- lib/ultimate-base/extensions/directive_processor.rb
|