data_files 1.0.0.rc3 → 1.0.0.rc4
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/Gemfile.lock +1 -1
- data/bin/data_files +12 -0
- data/{data-files.gemspec → data_files.gemspec} +0 -0
- data/lib/data_files/version.rb +1 -1
- metadata +3 -3
- data/rakelib/data_files.rake +0 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f208c6f73db7d87292565b88c9be99b6a16f63e918fffc7063b5bd843699cb2e
|
4
|
+
data.tar.gz: ad52010632b395a28a83279595b4ba7c5be19fac9ed1471b1ce09979ce05150e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f34e888d2dcec59aab8cf401ec1eaeada0efb0c0c6855aa36c1ce18b2464feebb74a697bc28e8cffeff8ef8941061afb56773215184173218e9896c0fd37f0ac
|
7
|
+
data.tar.gz: f2918a051de6f5b5256362eb45e32dc25eb387e4d6e7d71f9a7609625849a1f5d8f9cdf59ceb7f4d87d3b9c12d9d6227efa8bf9a634547566a29b39312472f55
|
data/Gemfile.lock
CHANGED
data/bin/data_files
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "data_files"
|
5
|
+
|
6
|
+
unless Dir.exist?(File.join(Dir.pwd, 'data'))
|
7
|
+
puts 'Could not find data directory in working directory.'
|
8
|
+
exit
|
9
|
+
end
|
10
|
+
|
11
|
+
data_files = DataFiles::REPL.new(Dir.pwd)
|
12
|
+
data_files.prompt
|
File without changes
|
data/lib/data_files/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: data_files
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andreas Zecher
|
@@ -26,13 +26,13 @@ files:
|
|
26
26
|
- LICENSE.txt
|
27
27
|
- README.md
|
28
28
|
- Rakefile
|
29
|
-
-
|
29
|
+
- bin/data_files
|
30
30
|
- data/games.yml
|
31
31
|
- data/lists.yml
|
32
|
+
- data_files.gemspec
|
32
33
|
- lib/data_files/active_data.rb
|
33
34
|
- lib/data_files/repl.rb
|
34
35
|
- lib/data_files/version.rb
|
35
|
-
- rakelib/data_files.rake
|
36
36
|
homepage: https://github.com/pixelate/data-files
|
37
37
|
licenses:
|
38
38
|
- MIT
|
data/rakelib/data_files.rake
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
require_relative "../lib/data_files/repl"
|
2
|
-
|
3
|
-
desc "REPL for manipulating Middleman Data Files"
|
4
|
-
task :"data_files" do |t|
|
5
|
-
unless Dir.exist?(File.join(Dir.pwd, 'data'))
|
6
|
-
puts 'Could not find data directory in working directory.'
|
7
|
-
exit
|
8
|
-
end
|
9
|
-
|
10
|
-
data_files = DataFiles::REPL.new(Dir.pwd)
|
11
|
-
data_files.prompt
|
12
|
-
end
|