js_stack 1.0.0 → 1.1.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/LICENSE.txt +1 -1
- data/README.md +6 -4
- data/lib/js_stack/version.rb +1 -1
- data/vendor/assets/javascripts/js_stack/base/underscore/1.7.0.js +1424 -0
- data/vendor/assets/javascripts/js_stack/base/underscore.js +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3ab38050f582b08a358eee4b9d66f0a50ba567f
|
|
4
|
+
data.tar.gz: 720a64fc63a8aa81f9b3e7cd476bad9e9ebed871
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02a354aad50df79ec879fd1cd860e8652ef2bba9756e79f6350b0db28f9798ba90c9debb8447874e6dfc0cb4b6edc0d2dd7daaecb2346df7553ed22a2eacc214
|
|
7
|
+
data.tar.gz: a5e36aa8a23ce7dc0b877274f95802089a3a8664a97078d80fbbce4f09467f9739211a2c103b4c1a53f33d3ff485e1e029d267f9a4c953610ea77d97133e0dce
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# js_stack [](https://gemnasium.com/netguru/js_stack) [](http://badge.fury.io/rb/js_stack)
|
|
2
2
|
|
|
3
|
-
Standard JS SPA stack we use at netguru
|
|
3
|
+
Standard JS SPA stack we use at [netguru](https://netguru.co)
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -49,9 +49,9 @@ Examples:
|
|
|
49
49
|
| :-----: | :------: | :-------: | :------: |
|
|
50
50
|
| backbone | **1.1.2**, 1.0.0 | [changelog](http://backbonejs.org/#changelog) | [homepage](http://backbonejs.org/) |
|
|
51
51
|
| marionette | **2.1.0**, 2.0.3, 1.8.8, 1.7.4, 1.6.4, 1.5.1, 1.4.1, 1.1.0 | [changelog](https://github.com/marionettejs/backbone.marionette/blob/master/changelog.md) | [homepage](http://marionettejs.com/) |
|
|
52
|
-
| underscore | **1.
|
|
52
|
+
| underscore | **1.7.0**, 1.6.0, 1.5.2 | [changelog](http://underscorejs.org/#changelog) | [homepage](http://underscorejs.org/) |
|
|
53
53
|
| hamlcoffee | **1.16** | [changelog](https://github.com/netzpirat/haml_coffee_assets/blob/master/CHANGELOG.md) | [homepage](https://github.com/netzpirat/haml_coffee_assets) |
|
|
54
|
-
| js-routes | **0.9.
|
|
54
|
+
| js-routes | **0.9.9** | [changelog](https://github.com/railsware/js-routes/blob/master/CHANGELOG.md) | [homepage](https://github.com/railsware/js-routes) |
|
|
55
55
|
|
|
56
56
|
### Plugins
|
|
57
57
|
|
|
@@ -67,7 +67,7 @@ Examples:
|
|
|
67
67
|
| backbone validation | **0.9.1**, 0.8.1 | [changelog](https://github.com/thedersen/backbone.validation#release-notes) | [homepage](https://github.com/thedersen/backbone.validation) |
|
|
68
68
|
| backbone virtualcollection | **0.5.1**, 0.4.15 | [changelog](https://github.com/p3drosola/Backbone.VirtualCollection#changelog) | [homepage](https://github.com/p3drosola/Backbone.VirtualCollection) |
|
|
69
69
|
| cocktail | **0.5.8** | None | [homepage](https://github.com/onsi/cocktail) |
|
|
70
|
-
| momentjs | **2.
|
|
70
|
+
| momentjs | **2.8.1** | [changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md) | [homepage](https://github.com/derekprior/momentjs-rails) |
|
|
71
71
|
| underscore inflections | **0.2.1** | None | [homepage](https://github.com/geetarista/underscore.inflections) |
|
|
72
72
|
| underscore string | **2.3.2** | [changelog](https://github.com/epeli/underscore.string#changelog) | [homepage](http://epeli.github.io/underscore.string/) |
|
|
73
73
|
|
|
@@ -78,3 +78,5 @@ Examples:
|
|
|
78
78
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
79
79
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
80
80
|
5. Create new Pull Request
|
|
81
|
+
|
|
82
|
+
Copyright (c) 2013-2014 [Netguru](https://netguru.co). See LICENSE for further details.
|
data/lib/js_stack/version.rb
CHANGED