simple-config 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/simple-config.rb +25 -0
- metadata +56 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
#!/usr/bin/env ruby[4~
|
2
|
+
|
3
|
+
# file: simple-config.rb
|
4
|
+
|
5
|
+
require 'line-tree'
|
6
|
+
|
7
|
+
class SimpleConfig
|
8
|
+
|
9
|
+
def self.parse(txt)
|
10
|
+
|
11
|
+
raw_a = LineTree.new(txt.gsub(/^-*$/m,'')).to_a
|
12
|
+
|
13
|
+
a = raw_a.map do |line|
|
14
|
+
|
15
|
+
s = line.is_a?(Array) ? line[0] : line
|
16
|
+
value, name = s.split(':',2).reverse
|
17
|
+
name ||= 'description'
|
18
|
+
|
19
|
+
[name.to_sym, value.to_s.strip]
|
20
|
+
|
21
|
+
end
|
22
|
+
|
23
|
+
Hash[a]
|
24
|
+
end
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: simple-config
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.1.0
|
6
|
+
platform: ruby
|
7
|
+
authors: []
|
8
|
+
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-04-26 00:00:00 +01:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description:
|
18
|
+
email:
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files: []
|
24
|
+
|
25
|
+
files:
|
26
|
+
- lib/simple-config.rb
|
27
|
+
has_rdoc: true
|
28
|
+
homepage:
|
29
|
+
licenses: []
|
30
|
+
|
31
|
+
post_install_message:
|
32
|
+
rdoc_options: []
|
33
|
+
|
34
|
+
require_paths:
|
35
|
+
- lib
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
none: false
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: "0"
|
42
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: "0"
|
48
|
+
requirements: []
|
49
|
+
|
50
|
+
rubyforge_project:
|
51
|
+
rubygems_version: 1.5.2
|
52
|
+
signing_key:
|
53
|
+
specification_version: 3
|
54
|
+
summary: simple-config
|
55
|
+
test_files: []
|
56
|
+
|