figs 2.0.3 → 2.0.4
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/Gemfile +1 -2
- data/lib/figs/directory_flattener.rb +3 -3
- data/lib/figs/version.rb +1 -1
- metadata +16 -22
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 3aebc79fde7580f3af76285d3325321bc0a7be81
|
|
4
|
+
data.tar.gz: 6bc6d0df7c6b2d93323047904d13667bf95edaa9
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c90457641c6a8d1756e40be5b9ad8858fc75988496cc36242fe2f33832c56307cd9725f5c6b49b404b2e5ecf5af9422dbbd8b0df4dea414995a4b71dd5eae86a
|
|
7
|
+
data.tar.gz: db0e187a3d5157e37df5644f4cb03e5549ef6b37765d6d01d689243aeec0604ba4107fb5ee35acb501ec9f9e236f046c028cd0bf72f4ed1fb7a38458f7dcffae
|
data/Gemfile
CHANGED
|
@@ -17,14 +17,14 @@ module Figs
|
|
|
17
17
|
# Iterate through array
|
|
18
18
|
filenames.map! do |filename|
|
|
19
19
|
# Flatten if its a file, flatten if a dir.
|
|
20
|
-
Dir.
|
|
20
|
+
Dir.exist?(filename) ? directory_to_filenames(filename) : filename
|
|
21
21
|
end
|
|
22
22
|
# Flattern the array and remove all nils
|
|
23
23
|
filenames.flatten.compact
|
|
24
24
|
end
|
|
25
|
-
|
|
25
|
+
|
|
26
26
|
private
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
##
|
|
29
29
|
# Expects a directory, returns its files and subdirectories files as an array of filenames/paths.
|
|
30
30
|
# be concave.
|
data/lib/figs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,46 +1,41 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: figs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 2.0.4
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- hab278
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2017-01-31 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rake
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- - ~>
|
|
17
|
+
- - "~>"
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: '10.1'
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- - ~>
|
|
24
|
+
- - "~>"
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
26
|
version: '10.1'
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: git
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
|
-
- - ~>
|
|
31
|
+
- - "~>"
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
37
33
|
version: 1.2.6
|
|
38
34
|
type: :runtime
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
|
-
- - ~>
|
|
38
|
+
- - "~>"
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
45
40
|
version: 1.2.6
|
|
46
41
|
description: Simple app configuration using ENV and YAML files
|
|
@@ -50,6 +45,11 @@ executables:
|
|
|
50
45
|
extensions: []
|
|
51
46
|
extra_rdoc_files: []
|
|
52
47
|
files:
|
|
48
|
+
- Gemfile
|
|
49
|
+
- README.md
|
|
50
|
+
- Rakefile
|
|
51
|
+
- bin/figsify
|
|
52
|
+
- lib/figs.rb
|
|
53
53
|
- lib/figs/application.rb
|
|
54
54
|
- lib/figs/directory_flattener.rb
|
|
55
55
|
- lib/figs/env.rb
|
|
@@ -60,34 +60,28 @@ files:
|
|
|
60
60
|
- lib/figs/tasks/install.rake
|
|
61
61
|
- lib/figs/templates/application.yml
|
|
62
62
|
- lib/figs/version.rb
|
|
63
|
-
- lib/figs.rb
|
|
64
|
-
- bin/figsify
|
|
65
|
-
- Rakefile
|
|
66
|
-
- Gemfile
|
|
67
|
-
- README.md
|
|
68
63
|
homepage: https://github.com/NYULibraries/figs
|
|
69
64
|
licenses:
|
|
70
65
|
- MIT
|
|
66
|
+
metadata: {}
|
|
71
67
|
post_install_message:
|
|
72
68
|
rdoc_options: []
|
|
73
69
|
require_paths:
|
|
74
70
|
- lib
|
|
75
71
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
|
-
none: false
|
|
77
72
|
requirements:
|
|
78
|
-
- -
|
|
73
|
+
- - ">="
|
|
79
74
|
- !ruby/object:Gem::Version
|
|
80
75
|
version: '0'
|
|
81
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
|
-
none: false
|
|
83
77
|
requirements:
|
|
84
|
-
- -
|
|
78
|
+
- - ">="
|
|
85
79
|
- !ruby/object:Gem::Version
|
|
86
80
|
version: '0'
|
|
87
81
|
requirements: []
|
|
88
82
|
rubyforge_project:
|
|
89
|
-
rubygems_version:
|
|
83
|
+
rubygems_version: 2.2.2
|
|
90
84
|
signing_key:
|
|
91
|
-
specification_version:
|
|
85
|
+
specification_version: 4
|
|
92
86
|
summary: Simple app configuration
|
|
93
87
|
test_files: []
|