yaml2csv 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.
- data/Gemfile.lock +1 -1
- data/Rakefile +1 -1
- data/lib/yaml2csv.rb +2 -0
- data/lib/yaml2csv/railtie.rb +7 -0
- data/lib/{tasks/yaml2csv.rb → yaml2csv/tasks.rb} +0 -0
- data/yaml2csv.gemspec +2 -2
- metadata +4 -3
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
data/lib/yaml2csv.rb
CHANGED
File without changes
|
data/yaml2csv.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.files = `git ls-files`.split("\n")
|
12
12
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
13
13
|
|
14
|
-
s.version = '0.0.
|
14
|
+
s.version = '0.0.3'
|
15
15
|
s.platform = Gem::Platform::RUBY
|
16
16
|
s.required_ruby_version = '>= 1.8.6'
|
17
17
|
s.required_rubygems_version = '>= 1.3.5'
|
@@ -23,5 +23,5 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.add_development_dependency lib, version
|
24
24
|
end
|
25
25
|
|
26
|
-
s.
|
26
|
+
s.add_runtime_dependency 'ya2yaml', '~> 0.30'
|
27
27
|
end
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 3
|
9
|
+
version: 0.0.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Ben Hutton
|
@@ -77,9 +77,10 @@ files:
|
|
77
77
|
- Rakefile
|
78
78
|
- examples/example.csv
|
79
79
|
- examples/example.yml
|
80
|
-
- lib/tasks/yaml2csv.rb
|
81
80
|
- lib/yaml2csv.rb
|
82
81
|
- lib/yaml2csv/hash_extensions.rb
|
82
|
+
- lib/yaml2csv/railtie.rb
|
83
|
+
- lib/yaml2csv/tasks.rb
|
83
84
|
- spec/hash_extensions_spec.rb
|
84
85
|
- spec/spec_helper.rb
|
85
86
|
- spec/yaml2csv_spec.rb
|