backbone_extensions 0.0.24 → 0.0.25

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 59d7036f3b251e916af7c8d9227a294fce060026
4
+ data.tar.gz: a9332784311a470d1ced7ca2a09d7d932c413ed4
5
+ SHA512:
6
+ metadata.gz: f77b11283eb53eaa567711fc58f1be9b60130f1e2b758ceec7af718cd353bfee61aaca940d9d5c4156bfffd17fb5eb3a647542e3186d3762276b9b6255efef35
7
+ data.tar.gz: e251d0ec44dca77ddcdb463cd9889b1e8a0331457335010acad5a47cadeaac3d4bd7d29b8461c5c31c3d87653f9473016f200be60691b0d516f40a0213db0d98
data/README.markdown CHANGED
@@ -1,12 +1,10 @@
1
- Backbone Extensions
2
- =====================
1
+ # Backbone Extensions
3
2
 
4
3
  [![Build Status](https://secure.travis-ci.org/rdy/backbone_extensions.png)](http://travis-ci.org/rdy/backbone_extensions)
5
4
 
6
5
  Adds extensions to the Backbone javascript library. It adds the javascript as a rails engine to be included in to a Rails 3+ project. To use it make sure require underscore, and backbone.
7
6
 
8
- Installing
9
- ==========
7
+ ## Installing
10
8
 
11
9
  1. Add the gem to bundler or install: gem 'backbone_extensions' or `gem install backbone_extensions`
12
10
  2. In your application.js //= require underscore
@@ -15,4 +13,8 @@ Installing
15
13
  5. In your application.js //= require backbone_extensions/decorator
16
14
  6. In your application.js //= require backbone_extensions/associations
17
15
 
16
+ ## Running Specs
17
+
18
+ 1. `rake jasmine` will start a server for the specs on port 8888.
19
+
18
20
  Copyright (c) 2012-3 Ryan Dy, Thomas Bukowski, released under the MIT license
data/Rakefile CHANGED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env rake
2
- ENV['JASMINE_SPEC_FORMAT'] = 'Fuubar'
3
2
  begin
4
3
  require 'bundler/setup'
5
4
  rescue LoadError
data/config/jshint.yml CHANGED
@@ -11,6 +11,7 @@ paths:
11
11
  - spec/javascripts/**/*.js
12
12
 
13
13
  exclude_paths:
14
+ - lib/assets/javascripts/backbone.js
14
15
  - spec/javascripts/support/vendor/**/*.js
15
16
 
16
17
  # ------------ jshint options ------------