sengiri_yaml 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 +4 -4
- data/.tachikoma.yml +1 -0
- data/.travis.yml +3 -0
- data/CHANGELOG.md +17 -0
- data/lib/sengiri_yaml/loader.rb +1 -1
- data/lib/sengiri_yaml/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 43e20e320991436f488b000ada4a95f33ff8c0ad
|
4
|
+
data.tar.gz: d34826154c3d3e2fab731b9aaf614b09e4ff46be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2d30c605c565ad83e8f98b832dd84d6070c2bb1161acb5a8285a6f5e76a795186ba0521251f3571c0818ea34e5f92147e8e334ec8ae2dcd097dbb95e35f6dee
|
7
|
+
data.tar.gz: 629b45a827e8167704d1d9312f716bfac82e3c2be26fe88f42ef710c30fbd3c50ff35f70d8d524eb01df644c54069a9cb10a5431964049aad44eaee4ecf34aed
|
data/.tachikoma.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
strategy: 'bundler'
|
data/.travis.yml
CHANGED
@@ -2,8 +2,10 @@ language: ruby
|
|
2
2
|
rvm:
|
3
3
|
- 2.1
|
4
4
|
- 2.2
|
5
|
+
- 2.3.0
|
5
6
|
- ruby-head
|
6
7
|
bundler_args: "--jobs=2"
|
8
|
+
cache: bundler
|
7
9
|
before_script:
|
8
10
|
- export COVERAGE=true
|
9
11
|
script:
|
@@ -18,3 +20,4 @@ notifications:
|
|
18
20
|
matrix:
|
19
21
|
allow_failures:
|
20
22
|
- rvm: ruby-head
|
23
|
+
sudo: false
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v0.0.2](https://github.com/sue445/sengiri_yaml/tree/v0.0.2)
|
4
|
+
#### 2015/01/26
|
5
|
+
- *Merged pull-request:* Bugfix: NameError in irb [\#3](https://github.com/sue445/sengiri_yaml/pull/3) ([sue445](https://github.com/sue445))
|
6
|
+
|
7
|
+
## [v0.0.1](https://github.com/sue445/sengiri_yaml/tree/v0.0.1)
|
8
|
+
#### 2014/12/31
|
9
|
+
## [v0.0.1.beta1](https://github.com/sue445/sengiri_yaml/tree/v0.0.1.beta1)
|
10
|
+
#### 2014/12/31
|
11
|
+
- *Merged pull-request:* Feature/loader [\#2](https://github.com/sue445/sengiri_yaml/pull/2) ([sue445](https://github.com/sue445))
|
12
|
+
|
13
|
+
- *Merged pull-request:* Impl executable file [\#1](https://github.com/sue445/sengiri_yaml/pull/1) ([sue445](https://github.com/sue445))
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
\* *This changelog was generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/lib/sengiri_yaml/loader.rb
CHANGED
@@ -9,7 +9,7 @@ module SengiriYaml
|
|
9
9
|
def load_dir(src_dir)
|
10
10
|
merged_content = ""
|
11
11
|
|
12
|
-
Pathname.glob("#{src_dir}/*.yml") do |yaml_path|
|
12
|
+
Pathname.glob("#{src_dir}/*.yml").sort.each do |yaml_path|
|
13
13
|
content = yaml_path.read.gsub(/^---$/, "")
|
14
14
|
merged_content << content
|
15
15
|
end
|
data/lib/sengiri_yaml/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sengiri_yaml
|
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
|
- sue445
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -120,8 +120,10 @@ files:
|
|
120
120
|
- ".gitignore"
|
121
121
|
- ".hound.yml"
|
122
122
|
- ".rspec"
|
123
|
+
- ".tachikoma.yml"
|
123
124
|
- ".travis.yml"
|
124
125
|
- ".yardopts"
|
126
|
+
- CHANGELOG.md
|
125
127
|
- Gemfile
|
126
128
|
- LICENSE.txt
|
127
129
|
- README.md
|
@@ -160,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
160
162
|
version: '0'
|
161
163
|
requirements: []
|
162
164
|
rubyforge_project:
|
163
|
-
rubygems_version: 2.
|
165
|
+
rubygems_version: 2.5.1
|
164
166
|
signing_key:
|
165
167
|
specification_version: 4
|
166
168
|
summary: divide yaml file
|