make_dirs_from_list 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/Gemfile +4 -0
- data/README.md +36 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/make_dirs_from_list +10 -0
- data/bin/setup +8 -0
- data/lib/make_dirs_from_list/.DS_Store +0 -0
- data/lib/make_dirs_from_list/version.rb +3 -0
- data/lib/make_dirs_from_list.rb +47 -0
- data/make_dirs_from_list.gemspec +34 -0
- metadata +98 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b09fa570c02fb41f2e75e94c4954956e2aa8eb4b
|
4
|
+
data.tar.gz: ffbdd41e7966f9d534f7032920518e6d0c8b2a23
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 68147e5088a87de3b405bfb1497240a0bd7d41b9f9cc56a44e8e83e2b58438309f30cb7653c3956fc83ba7bcfd6f298a6397c7ec7bc1fc6466e50d86d5a3172d
|
7
|
+
data.tar.gz: 519dbe8e558efc388e685d4bcbcd3363e0268e03a75c89fa6f22b08eed0d49a505fe01b913edd03fb4d659c2ace9ab54ae53249db093e39ca799e21018ad34f8
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# MakeDirsFromList
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/make_dirs_from_list`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'make_dirs_from_list'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install make_dirs_from_list
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/make_dirs_from_list.
|
36
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "make_dirs_from_list"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
Binary file
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require "make_dirs_from_list/version"
|
2
|
+
require "roo"
|
3
|
+
require "fileutils"
|
4
|
+
|
5
|
+
module MakeDirsFromList
|
6
|
+
def self.make!(file_name, target_dir, title_template)
|
7
|
+
columns = get_column_indices title_template
|
8
|
+
title_placeholders = get_placeholders title_template
|
9
|
+
rows = Roo::Spreadsheet.open file_name
|
10
|
+
dir_names = []
|
11
|
+
raise "Can't find a valid sheet at \"#{file_name}\"" if rows.nil?
|
12
|
+
|
13
|
+
FileUtils.mkdir target_dir unless Dir.exists? target_dir
|
14
|
+
|
15
|
+
rows.each_with_index do |row, i|
|
16
|
+
next if i.zero?
|
17
|
+
title_parts = row.values_at *columns
|
18
|
+
dir_name = make_dir_name title_parts.zip(title_placeholders), title_template.dup
|
19
|
+
dir_names << File.join(target_dir, dir_name)
|
20
|
+
end
|
21
|
+
|
22
|
+
puts "Making #{dir_names.size} dirs in #{target_dir} from text in columns #{columns}."
|
23
|
+
|
24
|
+
dir_names.each_with_index do |dir_name|
|
25
|
+
next if File.exists? dir_name
|
26
|
+
FileUtils.mkdir dir_name
|
27
|
+
print "."
|
28
|
+
end
|
29
|
+
|
30
|
+
puts "\n\aDone."
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.make_dir_name(title_parts, tmpl)
|
34
|
+
title_parts.each do |part, placeholder|
|
35
|
+
tmpl.gsub! placeholder, part
|
36
|
+
end
|
37
|
+
tmpl
|
38
|
+
end
|
39
|
+
|
40
|
+
def self.get_column_indices(tmpl)
|
41
|
+
tmpl.scan(/F(\d)/).flatten.map { |i| i.to_i - 1 }
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.get_placeholders(tmpl)
|
45
|
+
tmpl.scan /F\d/
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'make_dirs_from_list/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "make_dirs_from_list"
|
8
|
+
spec.version = MakeDirsFromList::VERSION
|
9
|
+
spec.authors = ["Diego Salazar"]
|
10
|
+
spec.email = ["diego@greyrobot.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Makes a directory structure given a list of dir names}
|
13
|
+
spec.description = %q{Quick command to create a directory structure given a list of dir names}
|
14
|
+
spec.homepage = "https://github.com/DiegoSalazar/make_dirs_from_list"
|
15
|
+
spec.licenses = ['MIT']
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
if spec.respond_to?(:metadata)
|
20
|
+
spec.metadata['allowed_push_host'] = "https://rubygems.org"
|
21
|
+
else
|
22
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
23
|
+
end
|
24
|
+
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
|
30
|
+
spec.add_dependency "roo", '~> 2.4'
|
31
|
+
|
32
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
33
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
34
|
+
end
|
metadata
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: make_dirs_from_list
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Diego Salazar
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-08-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: roo
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.4'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.4'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.12'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.12'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description: Quick command to create a directory structure given a list of dir names
|
56
|
+
email:
|
57
|
+
- diego@greyrobot.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- Gemfile
|
64
|
+
- README.md
|
65
|
+
- Rakefile
|
66
|
+
- bin/console
|
67
|
+
- bin/make_dirs_from_list
|
68
|
+
- bin/setup
|
69
|
+
- lib/make_dirs_from_list.rb
|
70
|
+
- lib/make_dirs_from_list/.DS_Store
|
71
|
+
- lib/make_dirs_from_list/version.rb
|
72
|
+
- make_dirs_from_list.gemspec
|
73
|
+
homepage: https://github.com/DiegoSalazar/make_dirs_from_list
|
74
|
+
licenses:
|
75
|
+
- MIT
|
76
|
+
metadata:
|
77
|
+
allowed_push_host: https://rubygems.org
|
78
|
+
post_install_message:
|
79
|
+
rdoc_options: []
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
requirements: []
|
93
|
+
rubyforge_project:
|
94
|
+
rubygems_version: 2.4.6
|
95
|
+
signing_key:
|
96
|
+
specification_version: 4
|
97
|
+
summary: Makes a directory structure given a list of dir names
|
98
|
+
test_files: []
|