gamera-symbolmatrix 1.2.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 +7 -0
- data/.gitignore +17 -0
- data/.travis.yml +10 -0
- data/Gemfile +18 -0
- data/Guardfile +39 -0
- data/LICENSE +22 -0
- data/README.md +201 -0
- data/Rakefile +10 -0
- data/features/parse_serialization.feature +26 -0
- data/features/print_to_yaml.feature +20 -0
- data/features/serialize.feature +43 -0
- data/features/stepdefs/parse_serialization.rb +11 -0
- data/features/stepdefs/print_to_yaml.rb +7 -0
- data/features/stepdefs/serialize.rb +11 -0
- data/features/support/env.rb +3 -0
- data/lib/reader/symbolmatrix.rb +37 -0
- data/lib/symbolmatrix.rb +9 -0
- data/lib/symbolmatrix/serialization.rb +43 -0
- data/lib/symbolmatrix/symbolmatrix.rb +122 -0
- data/lib/symbolmatrix/version.rb +3 -0
- data/lib/writer/symbolmatrix.rb +59 -0
- data/spec/complete_features_helper.rb +3 -0
- data/spec/plain_symbolmatrix_helper.rb +1 -0
- data/spec/reader/symbolmatrix_spec.rb +149 -0
- data/spec/symbolmatrix/serialization_spec.rb +133 -0
- data/spec/symbolmatrix/symbolmatrix_spec.rb +275 -0
- data/spec/writer/symbolmatrix_spec.rb +204 -0
- data/symbolmatrix.gemspec +22 -0
- metadata +133 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/symbolmatrix/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ['Eric Dobbs', 'Glen Aultman-Bettridge', 'Jillian Rosile']
|
6
|
+
gem.email = ['eric@dobbse.net', 'glenab@koansolutions.net', 'jillian.rosile@gmail.com']
|
7
|
+
gem.description = %q{Very useful for configuration files, SymbolMatrix is a hash-like multidimentional Symbol-only class with ability to discover and load YAML data}
|
8
|
+
gem.summary = %q{Very useful for configuration files, SymbolMatrix is a hash-like multidimentional Symbol-only class with ability to discover and load YAML data. Temporary fork of https://github.com/fetcher/symbolmatrix to add ERB support}
|
9
|
+
gem.homepage = "http://github.com/gamera-team/symbolmatrix"
|
10
|
+
|
11
|
+
gem.add_dependency "discoverer"
|
12
|
+
|
13
|
+
gem.add_development_dependency "rspec"
|
14
|
+
gem.add_development_dependency "fast"
|
15
|
+
|
16
|
+
gem.files = `git ls-files`.split($\)
|
17
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
18
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
19
|
+
gem.name = "gamera-symbolmatrix"
|
20
|
+
gem.require_paths = ["lib"]
|
21
|
+
gem.version = Symbolmatrix::VERSION
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gamera-symbolmatrix
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eric Dobbs
|
8
|
+
- Glen Aultman-Bettridge
|
9
|
+
- Jillian Rosile
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2015-06-15 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: discoverer
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - ">="
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '0'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: rspec
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
36
|
+
type: :development
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: fast
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0'
|
50
|
+
type: :development
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
description: Very useful for configuration files, SymbolMatrix is a hash-like multidimentional
|
58
|
+
Symbol-only class with ability to discover and load YAML data
|
59
|
+
email:
|
60
|
+
- eric@dobbse.net
|
61
|
+
- glenab@koansolutions.net
|
62
|
+
- jillian.rosile@gmail.com
|
63
|
+
executables: []
|
64
|
+
extensions: []
|
65
|
+
extra_rdoc_files: []
|
66
|
+
files:
|
67
|
+
- ".gitignore"
|
68
|
+
- ".travis.yml"
|
69
|
+
- Gemfile
|
70
|
+
- Guardfile
|
71
|
+
- LICENSE
|
72
|
+
- README.md
|
73
|
+
- Rakefile
|
74
|
+
- features/parse_serialization.feature
|
75
|
+
- features/print_to_yaml.feature
|
76
|
+
- features/serialize.feature
|
77
|
+
- features/stepdefs/parse_serialization.rb
|
78
|
+
- features/stepdefs/print_to_yaml.rb
|
79
|
+
- features/stepdefs/serialize.rb
|
80
|
+
- features/support/env.rb
|
81
|
+
- lib/reader/symbolmatrix.rb
|
82
|
+
- lib/symbolmatrix.rb
|
83
|
+
- lib/symbolmatrix/serialization.rb
|
84
|
+
- lib/symbolmatrix/symbolmatrix.rb
|
85
|
+
- lib/symbolmatrix/version.rb
|
86
|
+
- lib/writer/symbolmatrix.rb
|
87
|
+
- spec/complete_features_helper.rb
|
88
|
+
- spec/plain_symbolmatrix_helper.rb
|
89
|
+
- spec/reader/symbolmatrix_spec.rb
|
90
|
+
- spec/symbolmatrix/serialization_spec.rb
|
91
|
+
- spec/symbolmatrix/symbolmatrix_spec.rb
|
92
|
+
- spec/writer/symbolmatrix_spec.rb
|
93
|
+
- symbolmatrix.gemspec
|
94
|
+
homepage: http://github.com/gamera-team/symbolmatrix
|
95
|
+
licenses: []
|
96
|
+
metadata: {}
|
97
|
+
post_install_message:
|
98
|
+
rdoc_options: []
|
99
|
+
require_paths:
|
100
|
+
- lib
|
101
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
requirements: []
|
112
|
+
rubyforge_project:
|
113
|
+
rubygems_version: 2.2.2
|
114
|
+
signing_key:
|
115
|
+
specification_version: 4
|
116
|
+
summary: Very useful for configuration files, SymbolMatrix is a hash-like multidimentional
|
117
|
+
Symbol-only class with ability to discover and load YAML data. Temporary fork of
|
118
|
+
https://github.com/fetcher/symbolmatrix to add ERB support
|
119
|
+
test_files:
|
120
|
+
- features/parse_serialization.feature
|
121
|
+
- features/print_to_yaml.feature
|
122
|
+
- features/serialize.feature
|
123
|
+
- features/stepdefs/parse_serialization.rb
|
124
|
+
- features/stepdefs/print_to_yaml.rb
|
125
|
+
- features/stepdefs/serialize.rb
|
126
|
+
- features/support/env.rb
|
127
|
+
- spec/complete_features_helper.rb
|
128
|
+
- spec/plain_symbolmatrix_helper.rb
|
129
|
+
- spec/reader/symbolmatrix_spec.rb
|
130
|
+
- spec/symbolmatrix/serialization_spec.rb
|
131
|
+
- spec/symbolmatrix/symbolmatrix_spec.rb
|
132
|
+
- spec/writer/symbolmatrix_spec.rb
|
133
|
+
has_rdoc:
|