canjs-rails 0.1.0 → 1.1.2
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/CHANGELOG.md +5 -0
- data/canjs-rails.gemspec +1 -1
- data/lib/canjs/rails/version.rb +2 -2
- data/vendor/assets/javascripts/can.construct.proxy.js +27 -26
- data/vendor/assets/javascripts/can.construct.super.js +40 -36
- data/vendor/assets/javascripts/can.control.plugin.js +92 -229
- data/vendor/assets/javascripts/can.control.view.js +37 -31
- data/vendor/assets/javascripts/can.fixture.js +277 -570
- data/vendor/assets/javascripts/can.jquery.js +2396 -1792
- data/vendor/assets/javascripts/can.jquery.min.js +70 -52
- data/vendor/assets/javascripts/can.observe.attributes.js +137 -276
- data/vendor/assets/javascripts/can.observe.backup.js +137 -335
- data/vendor/assets/javascripts/can.observe.delegate.js +97 -250
- data/vendor/assets/javascripts/can.observe.setter.js +53 -52
- data/vendor/assets/javascripts/can.observe.validations.js +187 -362
- data/vendor/assets/javascripts/can.view.modifiers.js +57 -190
- data/vendor/assets/javascripts/can.view.mustache.js +758 -0
- data/vendor/assets/javascripts/download_canjs.sh +18 -13
- metadata +4 -3
@@ -1,15 +1,20 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
-
wget https://github.com/downloads/
|
4
|
-
wget https://github.com/downloads/
|
5
|
-
wget http://canjs.us/release/latest/can.construct.proxy.js
|
6
|
-
wget http://canjs.us/release/latest/can.construct.super.js
|
7
|
-
wget http://canjs.us/release/latest/can.observe.delegate.js
|
8
|
-
wget http://canjs.us/release/latest/can.observe.setter.js
|
9
|
-
wget http://canjs.us/release/latest/can.observe.attributes.js
|
10
|
-
wget http://canjs.us/release/latest/can.observe.validations.js
|
11
|
-
wget http://canjs.us/release/latest/can.observe.backup.js
|
12
|
-
wget http://canjs.us/release/latest/can.control.plugin.js
|
13
|
-
wget http://canjs.us/release/latest/can.control.view.js
|
14
|
-
wget http://canjs.us/release/latest/can.view.modifiers.js
|
15
|
-
wget http://canjs.us/release/latest/can.
|
3
|
+
wget -N https://github.com/downloads/bitovi/canjs/can.jquery-1.1.2.js
|
4
|
+
wget -N https://github.com/downloads/bitovi/canjs/can.jquery-1.1.2.min.js
|
5
|
+
wget -N http://canjs.us/release/latest/can.construct.proxy.js
|
6
|
+
wget -N http://canjs.us/release/latest/can.construct.super.js
|
7
|
+
wget -N http://canjs.us/release/latest/can.observe.delegate.js
|
8
|
+
wget -N http://canjs.us/release/latest/can.observe.setter.js
|
9
|
+
wget -N http://canjs.us/release/latest/can.observe.attributes.js
|
10
|
+
wget -N http://canjs.us/release/latest/can.observe.validations.js
|
11
|
+
wget -N http://canjs.us/release/latest/can.observe.backup.js
|
12
|
+
wget -N http://canjs.us/release/latest/can.control.plugin.js
|
13
|
+
wget -N http://canjs.us/release/latest/can.control.view.js
|
14
|
+
wget -N http://canjs.us/release/latest/can.view.modifiers.js
|
15
|
+
wget -N http://canjs.us/release/latest/can.view.mustache.js
|
16
|
+
wget -N http://canjs.us/release/latest/can.fixture.js
|
17
|
+
|
18
|
+
# rename some files
|
19
|
+
mv can.jquery-*.min.js can.jquery.min.js
|
20
|
+
mv can.jquery-*.js can.jquery.js
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: canjs-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.2
|
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-
|
12
|
+
date: 2012-11-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|
@@ -49,7 +49,7 @@ dependencies:
|
|
49
49
|
- - ~>
|
50
50
|
- !ruby/object:Gem::Version
|
51
51
|
version: '0.14'
|
52
|
-
description: This gem provides CanJS for your Rails 3.1+ application.
|
52
|
+
description: This gem provides CanJS (for jQuery) for your Rails 3.1+ application.
|
53
53
|
email:
|
54
54
|
- craig@mindscratch.org
|
55
55
|
executables: []
|
@@ -80,6 +80,7 @@ files:
|
|
80
80
|
- vendor/assets/javascripts/can.observe.setter.js
|
81
81
|
- vendor/assets/javascripts/can.observe.validations.js
|
82
82
|
- vendor/assets/javascripts/can.view.modifiers.js
|
83
|
+
- vendor/assets/javascripts/can.view.mustache.js
|
83
84
|
- vendor/assets/javascripts/download_canjs.sh
|
84
85
|
homepage: https://github.com/mindscratch/canjs-rails
|
85
86
|
licenses: []
|