js_stack 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 75475264bea2718cee0dde62cb10ea3d73a6c1c8
4
- data.tar.gz: 27862a4802bdbe561fbe4313fa7a1ffd9b94fac2
3
+ metadata.gz: 12e4e25d346bff8a62ac1ebf82a01a99f8a19cf6
4
+ data.tar.gz: 88dc32635cd76ca4e8af3f4c575d215a5f977c4f
5
5
  SHA512:
6
- metadata.gz: 90f450557552bf6b0bd10229c73649a19d8e7ae93e170b41cc3987926de547217369133d701317ad686fdffdc9c55d17642151858e39edd15b257ee9537b2deb
7
- data.tar.gz: 91381a7b379c8d7194512839234c1f09cda3c9ad77c126d1fada76d6123f7f0e4879de314c1e4dc06044aaeea6418d630b693b241b16e1fd01370be251d77cca
6
+ metadata.gz: ce03a72501b3b46a7951e92b61258b3ab9f73c58c2aa6ae1a9ff3a25a86666f6910530b83214498a0aa83795a87cb7ed409e56bdc1263731b3fa426e4acfb209
7
+ data.tar.gz: 1e9eaf823b4a08e863f81e5d447a730b013c529ce976cb86e874f9c5fe96381b9a142e970c79f1f08caf4c21fd7735c4387a78baabaecba1db560d7255dee4cd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.1
4
+
5
+ * update backbone 1.1.1 -> 1.1.2 [@gvl]
6
+
3
7
  ## 0.5.0
4
8
 
5
9
  * update underscore 1.5.2 -> 1.6.0 [@gvl]
data/README.md CHANGED
@@ -29,16 +29,30 @@ You can require specific version of library:
29
29
 
30
30
  ```coffeescript
31
31
  #= require js_stack/base/<lib_name>/<version>
32
- #= require js_stack/plugins/<lib_name>/<version>
32
+ #= require js_stack/plugins/<lib_name>/<plugin_name>/<version>
33
33
  ```
34
34
 
35
+ Examples:
36
+
37
+ ```coffeescript
38
+ #= require js_stack/base/backbone/
39
+ #= require js_stack/base/backbone/1.0.0
40
+
41
+ #= require js_stack/plugins/backbone.pageable
42
+ #= require js_stack/plugins/backbone/pageable/1.4.5
43
+
44
+ #= require js_stack/plugins/cocktail
45
+ #= require js_stack/plugins/cocktail/0.5.3
46
+ ```
47
+ > You cannot specify version for `hamlcoffee`, `momentjs` and `js_routes`
48
+
35
49
  ## What's included?
36
50
 
37
51
  ### Base
38
52
 
39
53
  | Library | Versions | Changelog | Homepage |
40
54
  | :-----: | :------: | :-------: | :------: |
41
- | backbone | **1.1.1**, 1.1.0, 1.0.0 | [changelog](http://backbonejs.org/#changelog) | [homepage](http://backbonejs.org/) |
55
+ | backbone | **1.1.2**, 1.1.1, 1.1.0, 1.0.0 | [changelog](http://backbonejs.org/#changelog) | [homepage](http://backbonejs.org/) |
42
56
  | marionette | **1.6.2**, 1.5.1, 1.4.1, 1.1.0 | [changelog](https://github.com/marionettejs/backbone.marionette/blob/master/changelog.md) | [homepage](http://marionettejs.com/) |
43
57
  | underscore | **1.6.0**, 1.5.2 | [changelog](http://underscorejs.org/#changelog) | [homepage](http://underscorejs.org/) |
44
58
  | hamlcoffee | **1.16** | [changelog](https://github.com/netzpirat/haml_coffee_assets/blob/master/CHANGELOG.md) | [homepage](https://github.com/netzpirat/haml_coffee_assets) |
@@ -56,7 +70,7 @@ You can require specific version of library:
56
70
  | backbone validation | **0.9.1**, 0.8.1 | [changelog](https://github.com/thedersen/backbone.validation#release-notes) | [homepage](https://github.com/thedersen/backbone.validation) | Yes
57
71
  | backbone virtualcollection | **0.4.8**, 0.4.5 | [changelog](https://github.com/p3drosola/Backbone.VirtualCollection#changelog) | [homepage](https://github.com/p3drosola/Backbone.VirtualCollection) | Yes
58
72
  | cocktail | **0.5.3** | none | [homepage](https://github.com/onsi/cocktail) | No
59
- | momentjs | **2.5.1** | [changelog](https://github.com/moment/ moment/#changelog) | [homepage](https://github.com/derekprior/momentjs-rails) | No
73
+ | momentjs | **2.5.1** | [changelog](https://github.com/moment/moment/#changelog) | [homepage](https://github.com/derekprior/momentjs-rails) | No
60
74
  | underscore inflections | **0.2.1** | none | [homepage](https://github.com/geetarista/underscore.inflections) | No
61
75
  | underscore string | **2.3.2** | [changelog](https://github.com/epeli/underscore.string#changelog) | [homepage](http://epeli.github.io/underscore.string/) | No
62
76
  > Default: library is included in `js_stack/plugins`
@@ -1,3 +1,3 @@
1
1
  module JsStack
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end