higml 0.0.2 → 0.0.3
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 +8 -8
- data/VERSION +1 -1
- data/higml.gemspec +3 -3
- data/lib/higml/parser.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
Y2IyNTY0NTg5NGM3MGRjZmZhOTY5YTJkODc1MWU0ODVkOTcwM2RjMw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OTVlMjUwNTc2MGI1NGM0NzQ4NTM1ZTJmMjU5NDJiZTI3YWU2MTQwZQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YjJkNDc1YjllMTgwOWE2MzVkMDhlYzIxZWI2NmZhMzkxNDE2MGIzMTRmMjFi
|
|
10
|
+
NDc4YjZjMzIwZWQyNmE2ZTcyY2I4YTgzMjJjZWIwYmExODcwNTc4ZGRjYTNl
|
|
11
|
+
NjYwZWU3YTgyMjI2MWIxOTFhMWY1NTRiNGFiN2Q5MGQ0ZTg0Mzk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NGExMmNkODVlNmU4ZDdiMGQ0OTcwZTZiZTBmZWRmODliOTljNzZjYTM1NjZj
|
|
14
|
+
ZDAzOTVjNWNlZjdiYmNhZTAwMDdjYWY5ODU3OWFlY2NjYzhlMTZjMjZiZGVm
|
|
15
|
+
ZDYxMGRhNmY1MzFhODhlNTlhN2U1NWVkYzk4NGZkOTE5MDk3ZjE=
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.3
|
data/higml.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: higml 0.0.
|
|
5
|
+
# stub: higml 0.0.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "higml"
|
|
9
|
-
s.version = "0.0.
|
|
9
|
+
s.version = "0.0.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Daniel Higginbotham"]
|
|
14
|
-
s.date = "2014-06-
|
|
14
|
+
s.date = "2014-06-11"
|
|
15
15
|
s.description = "Higml is a terse format for converting a static input hash to a dynamic output hash."
|
|
16
16
|
s.email = "daniel@flyingmachinestudios.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
data/lib/higml/parser.rb
CHANGED
|
@@ -83,9 +83,9 @@ module Higml
|
|
|
83
83
|
|
|
84
84
|
def type
|
|
85
85
|
case @stripped_source[0]
|
|
86
|
-
when VALUE_INDICATOR
|
|
87
|
-
when IMPORT_INDICATOR
|
|
88
|
-
when COMMENT_INDICATOR
|
|
86
|
+
when VALUE_INDICATOR then :value
|
|
87
|
+
when IMPORT_INDICATOR then :import
|
|
88
|
+
when COMMENT_INDICATOR then :comment
|
|
89
89
|
else
|
|
90
90
|
:selector
|
|
91
91
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: higml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Higginbotham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-06-
|
|
11
|
+
date: 2014-06-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|