rack-lodash 0.0.1 → 0.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 27de30b415fcd1dd0eb47e6c90984a682f99f783
4
- data.tar.gz: 554897d26abf5322eb92a5a37462c19f42e0278d
3
+ metadata.gz: 4ac637ee7d6781b654a12b3ae230063f455cfbb0
4
+ data.tar.gz: 2e67bd3a3d1e61ed34182082e52a047c0a06917e
5
5
  SHA512:
6
- metadata.gz: 65348a5ee1780ae4e42d7ebd437f28dfb455a09391064f5ab37610e6ff7b787da0eae3b3c2924a4bc24ed7d60ccb686c225824be488bd587cd65107c868ae47e
7
- data.tar.gz: 86d69e6e5181683e60aca81b3fccb94b902ef6f1082c089b3aa1b235cab9b1385117eb3b1cb57526e1983d4eb9025dee3973da3c38f6d27cd77c6144f54facec
6
+ metadata.gz: e243f3c543755ce2de94fc9171ca7237ac88f6d09214ef84fc45167bab510d14650c1d994fafb74d41aa3a1968ba82d2b9cfe67f975f61435c8108b3a48f96cb
7
+ data.tar.gz: 2493a0ef633da12c47aa1184dbaa066aa3e5194f92428ac22bb767602b48cdbe4f25ec3757ff52f8e972ad0bfcec866b80dfa179a6d8af42cc523e27f8ceca4d
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.2
4
+ - 1.9.3
5
+ - 2.0.0
6
+
7
+ # whitelist
8
+ branches:
9
+ only:
10
+ - master
11
+ - develop
@@ -0,0 +1,7 @@
1
+ # CH CH CH CH CHANGES! #
2
+
3
+ # Saturday the 17th of August 2013, v0.0.2 #
4
+
5
+ * Had the wrong CDN path for jsDelivr, because it was linked incorrectly from the Lo-Dash site :/ Fixed.
6
+
7
+ ----
data/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  [Lo-dash](http://lodash.com/) CDN script tags and fallback in one neat package. Current version is for Lo-dash v#{Rack::Lodash::LODASH_VERSION}
4
4
 
5
+ ### Build status ###
6
+
7
+ Master branch:
8
+ [![Build Status](https://travis-ci.org/yb66/rack-lodash.png?branch=develop)](https://travis-ci.org/yb66/rack-lodash)
9
+
10
+
5
11
  ## Why? ##
6
12
 
7
13
  Because then I don't have to worry about versioning or fallback.
@@ -12,17 +18,17 @@ Add this line to your application's Gemfile:
12
18
 
13
19
  gem 'rack-lodash'
14
20
 
15
- And then execute:
21
+ And then, from a command-line, execute:
16
22
 
17
- $ bundle install
23
+ bundle install
18
24
 
19
25
  Or even better:
20
26
 
21
- $ bundle install --binstubs --path vendor
27
+ bundle install --binstubs --path vendor
22
28
 
23
29
  Or install it yourself as:
24
30
 
25
- $ gem install rack-lodash -r
31
+ gem install rack-lodash -r
26
32
 
27
33
  ## Usage ##
28
34
 
@@ -12,7 +12,7 @@ module Rack
12
12
  CLOUDFLARE = "//cdnjs.cloudflare.com/ajax/libs/lodash.js/#{LODASH_VERSION}/lodash.min.js"
13
13
 
14
14
  # Script tags for the jsDelivr CDN
15
- JSDELIVR = "//cdn.jsdelivr.net/lodash/#{LODASH_VERSION}/lodash.backbone.min.js"
15
+ JSDELIVR = "//cdn.jsdelivr.net/lodash/#{LODASH_VERSION}/lodash.min.js"
16
16
  end
17
17
 
18
18
 
@@ -2,7 +2,7 @@ module Rack
2
2
  class Lodash
3
3
 
4
4
  # The version of this library.
5
- VERSION = "0.0.1"
5
+ VERSION = "0.0.2"
6
6
 
7
7
  # The version of Lo-dash it supports
8
8
  LODASH_VERSION = "1.3.1"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-lodash
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Iain Barnett
@@ -76,6 +76,8 @@ extra_rdoc_files: []
76
76
  files:
77
77
  - .gitignore
78
78
  - .rspec
79
+ - .travis.yml
80
+ - CHANGES.md
79
81
  - Gemfile
80
82
  - LICENCE.txt
81
83
  - README.md