loquacious 1.8.0 → 1.8.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ == 1.8.1 / 2011-06-09
2
+
3
+ Bug Fixes
4
+ - Assignment methods now mirror one another in their return values
5
+
1
6
  == 1.8.0 / 2011-06-03
2
7
 
3
8
  Enhancements
@@ -157,8 +157,6 @@ module Loquacious
157
157
  @__values[#{m.inspect}] = v
158
158
  end
159
159
  end
160
-
161
- return self.#{m}
162
160
  end
163
161
  CODE
164
162
 
data/tmp.rb ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $:.unshift 'lib'
4
+ require 'loquacious'
5
+
6
+ config = Loquacious.configuration_for('test') {}
7
+
8
+ Loquacious.defaults_for('test') {
9
+ bar(Proc.new { config.foo + '.bar' })
10
+ foo 'foo'
11
+ }
12
+
13
+ $stdout.puts "foo => #{config.foo}"
14
+ $stdout.puts "bar => #{config.bar}"
15
+
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.8.1
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loquacious
3
3
  version: !ruby/object:Gem::Version
4
- hash: 55
4
+ hash: 53
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 8
9
- - 0
10
- version: 1.8.0
9
+ - 1
10
+ version: 1.8.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tim Pease
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-06-03 00:00:00 -06:00
18
+ date: 2011-06-09 00:00:00 -06:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -105,6 +105,7 @@ files:
105
105
  - spec/spec.opts
106
106
  - spec/spec_helper.rb
107
107
  - spec/string_spec.rb
108
+ - tmp.rb
108
109
  - version.txt
109
110
  has_rdoc: true
110
111
  homepage: http://rubygems.org/gems/loquacious