sinatra-fix_951 1.0.0 → 1.0.1
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/.gitignore +0 -3
- data/.travis.yml +3 -1
- data/Gemfile +1 -0
- data/Readme.md +1 -1
- data/sinatra-fix_951.gemspec +2 -2
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 98b5cecfbe880a8c8500aae3d2e00f9543a5f501
|
|
4
|
+
data.tar.gz: 2b6f90096169a083a4d54e5db746f5bc085860ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d64d1403e5c6ed9a6b0ff23fae508dda1b88b5fa3d71e779d5c3bb3532bc3c2b9ba6e3d1c95a112211cdf6b6982cda388bae9f6010632ab225dea67562796ae
|
|
7
|
+
data.tar.gz: 0db48eeaca69e0399ca4c3052e565932c5e91c358f023a27f9c753f834bd3b49e0fca6267787e9a0420ff4a42fa14d99c6c3ae87e270da210639d029995b1377
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
# THIS IS COPY / PASTED STRAIGHT OUT OF THE SINATRA
|
|
1
|
+
# THIS IS COPY / PASTED STRAIGHT OUT OF THE SINATRA .travis.yml:
|
|
2
2
|
# https://github.com/sinatra/sinatra/blob/v1.4.5/.travis.yml
|
|
3
|
+
# (added 2.2.0)
|
|
3
4
|
---
|
|
4
5
|
rvm:
|
|
5
6
|
- 1.8.7
|
|
@@ -7,6 +8,7 @@ rvm:
|
|
|
7
8
|
- 1.9.3
|
|
8
9
|
- 2.0.0
|
|
9
10
|
- 2.1.0
|
|
11
|
+
- 2.2.0
|
|
10
12
|
- rbx
|
|
11
13
|
- jruby
|
|
12
14
|
- jruby-head
|
data/Gemfile
CHANGED
data/Readme.md
CHANGED
|
@@ -25,7 +25,7 @@ and I traced its history and explained what happened and why [here](https://gith
|
|
|
25
25
|
|
|
26
26
|
If you want to understand why this fixes the issue,
|
|
27
27
|
then you'll need to learn the Ruby Object Model.
|
|
28
|
-
This is a class that [I teach](object-model-2httpsgithubcomjoshcheekruby-object-model),
|
|
28
|
+
This is a class that [I teach](http://today.turing.io/outlines/2015-03-11#object-model-2httpsgithubcomjoshcheekruby-object-model),
|
|
29
29
|
come and learn with us at the [Turing School of Software and Design](http://turing.io/)!
|
|
30
30
|
|
|
31
31
|
Installing
|
data/sinatra-fix_951.gemspec
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'sinatra-fix_951'
|
|
3
|
-
s.version = '1.0.
|
|
3
|
+
s.version = '1.0.1'
|
|
4
4
|
s.description = "Fix bug #951 in Sinatra version 1.4.5"
|
|
5
|
-
s.summary = "
|
|
5
|
+
s.summary = "Fixes bug on Sinatra 1.4.5 you get 'Undefined method join for <#String:123123132>'"
|
|
6
6
|
s.authors = ["Josh Cheek"]
|
|
7
7
|
s.email = "josh.cheek@gmail.com"
|
|
8
8
|
s.homepage = "https://github.com/JoshCheek/sinatra-fix_951"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sinatra-fix_951
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Cheek
|
|
@@ -61,8 +61,7 @@ rubyforge_project:
|
|
|
61
61
|
rubygems_version: 2.4.1
|
|
62
62
|
signing_key:
|
|
63
63
|
specification_version: 4
|
|
64
|
-
summary:
|
|
65
|
-
this bug for three or four months now. Finally decided to just fix it.
|
|
64
|
+
summary: Fixes bug on Sinatra 1.4.5 you get 'Undefined method join for <#String:123123132>'
|
|
66
65
|
test_files:
|
|
67
66
|
- test.rb
|
|
68
67
|
has_rdoc:
|