sinatra-bells 0.4.0 → 0.4.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: 8c06a119e890338c06263a4ff633d48408783cb3
4
- data.tar.gz: 0caaea6341e20b1525125caaafa6562613a2aa54
3
+ metadata.gz: 419ad67b68c696d4ad82fb51408c30e6c5caadba
4
+ data.tar.gz: 521c7ef99e9148a54d529cdfabe98b063db37ada
5
5
  SHA512:
6
- metadata.gz: f8582be5383ef42c876b695810905a058df03bfefb82b03e57841c67fefd9028707712f7876663c68bdb1bc3f1d611dace8773b075de8e0d5fce6856456351b2
7
- data.tar.gz: a0e5f7574fd1c043bc8d67ed4141b0f2a2feb52933bad982756f5b422a64503b1c7cc5742725ee82457a1d6a8c8111e347e903a3a96c726c492ae7120e00db84
6
+ metadata.gz: ad85c202930f58d5cdd1c3ef47a723ce5420d846ed9d5cb4533e46f817a7ea9e18b8a4c8073340e8a83cc9033ae683ce42f17b79ba1c7a15e47841d88e22f461
7
+ data.tar.gz: 631db25e12e6f86963de205f3b0eb4759190ff24efc4098cbf0f175448a1e52c495f5316d11888d0b1cfd1472fa18eafcc7444be5172a0ba2dd8ba054ced19f5
data/ChangeLog CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  = Revision history for sinatra-bells
4
4
 
5
+ == 0.4.1 [2016-06-06]
6
+
7
+ * Fixed regression introduced in 0.4.0.
8
+
5
9
  == 0.4.0 [2016-06-06]
6
10
 
7
11
  * Prevent Sinatra's hash merge behaviour in Sinatra::Bells.set.
data/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  == VERSION
4
4
 
5
- This documentation refers to sinatra-bells version 0.4.0
5
+ This documentation refers to sinatra-bells version 0.4.1
6
6
 
7
7
 
8
8
  == DESCRIPTION
@@ -128,7 +128,7 @@ class Sinatra::Bells
128
128
  end
129
129
 
130
130
  def tag_(name, *args)
131
- tag__(name, *args)
131
+ args = [tag__(name, *args)]
132
132
  yield args if block_given?
133
133
  args.push('</', name, '>').join
134
134
  end
@@ -6,7 +6,7 @@ module Sinatra
6
6
 
7
7
  MAJOR = 0
8
8
  MINOR = 4
9
- TINY = 0
9
+ TINY = 1
10
10
 
11
11
  class << self
12
12
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinatra-bells
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jens Wille
@@ -83,14 +83,13 @@ licenses:
83
83
  metadata: {}
84
84
  post_install_message: |2+
85
85
 
86
- sinatra-bells-0.4.0 [2016-06-06]:
86
+ sinatra-bells-0.4.1 [2016-06-06]:
87
87
 
88
- * Prevent Sinatra's hash merge behaviour in Sinatra::Bells.set.
89
- * Added Sinatra::Bells::Helpers::View#tag__ and HTML element helpers.
88
+ * Fixed regression introduced in 0.4.0.
90
89
 
91
90
  rdoc_options:
92
91
  - "--title"
93
- - sinatra-bells Application documentation (v0.4.0)
92
+ - sinatra-bells Application documentation (v0.4.1)
94
93
  - "--charset"
95
94
  - UTF-8
96
95
  - "--line-numbers"