loquacious 1.8.0 → 1.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/lib/loquacious/configuration.rb +0 -2
- data/tmp.rb +15 -0
- data/version.txt +1 -1
- metadata +5 -4
data/History.txt
CHANGED
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
|
+
|
data/version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.8.
|
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:
|
4
|
+
hash: 53
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 8
|
9
|
-
-
|
10
|
-
version: 1.8.
|
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-
|
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
|