marionette-rails 1.1.0 → 2.4.4

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: 3df84f2bc2ea6c1aef5cb2440c83ade372d82a95
4
- data.tar.gz: c301df07ebf0f28da4bda15ea0bcd3aa0a1d95b8
3
+ metadata.gz: fa508685db77a78037cc6008a5197bdc15f23f06
4
+ data.tar.gz: 119d735d1e65100778047c3eeeecbb1be7ae9774
5
5
  SHA512:
6
- metadata.gz: 57c7cf2def08ea6c5c88510cb04a76efd5dea850f7c034b6d6a67e7826ec2085cd43cb749df07387d1b94133d973afb92f857a44fd1473e520af4255624f7426
7
- data.tar.gz: a3842e6bf08ae00997fb7a636bcb1670935a9962a3a3289a789ce56b0c795ed38fcff876425f1f3ffe0a4e1b87fb394ea135b4d851f79878bf708accbc3a3692
6
+ metadata.gz: eec102f779a4cc6b2f15b225694c87aecddca7606c31653fefd4654811c938be6dd8a51fd3a63fd8473f48e61054a319ee73c64a3b00237fef4278fc4de0b707
7
+ data.tar.gz: 001f87882dec1215784fcdcaf99d3d7de2906aa61978e4755d4b9bee7e69050e04a361ba49428728bf5e055d7b25a750b9d7a9a3edb4ba38b4964d0914b5da82
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012 Godfrey Chan
1
+ Copyright (c) 2012-2014 Godfrey Chan & Stafford Brunk
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
@@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
16
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
17
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
18
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.
19
+ THE SOFTWARE.
data/README.md CHANGED
@@ -5,7 +5,7 @@ marionette-rails
5
5
 
6
6
  This gem is a wrapper for Derick Bailey's [Backbone.Marionette](https://github.com/marionettejs/backbone.marionette) library. It vendors the javascript library code for use with Rails' asset pipeline (Rails 3.1+).
7
7
 
8
- This gem is currently maintained by [@chancancode](https://github.com/chancancode/) and [@wingrunr21](https://github.com/wingrunr21).
8
+ This gem is currently maintained by [@wingrunr21](https://github.com/wingrunr21).
9
9
 
10
10
  ## Dependencies
11
11
 
@@ -15,11 +15,7 @@ This gem is currently maintained by [@chancancode](https://github.com/chancancod
15
15
 
16
16
  Add it to your Gemfile:
17
17
 
18
- group :assets do
19
- # Your other asset gems (sass-rails, coffee-rails, etc)
20
-
21
18
  gem 'marionette-rails'
22
- end
23
19
 
24
20
  Then add this to `app/assets/javascripts/application.js.coffee` after your
25
21
  backbone require:
@@ -48,12 +44,6 @@ For bugs in [Backbone.Marionette](https://github.com/marionettejs/backbone.mario
48
44
 
49
45
  For bugs in this gem distribution, use the [GitHub issue tracker](https://github.com/chancancode/marionette-rails/issues). If you could submit a pull request - that's even better!
50
46
 
51
- ## Donations
52
-
53
- If you're using Marionette and you're finding that it is saving you time and effort, then please consider donating to the upstream [Backbone.Marionette](https://github.com/marionettejs/backbone.marionette) project.
54
-
55
- [![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7SJHYWJ487SF4)
56
-
57
47
  ## License
58
48
 
59
49
  This library is distributed under the MIT license. Please see the LICENSE file.
@@ -1,5 +1,5 @@
1
1
  module Marionette
2
2
  module Rails
3
- VERSION = '1.1.0'
3
+ VERSION = '2.4.4'
4
4
  end
5
5
  end