make_dirs_from_list 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bfd384e1a8819380685bdd3af212bc502a13540b
4
- data.tar.gz: 57b60c9cabed39a85f0456574a624e545c3a6f0b
3
+ metadata.gz: 239f0a037c1e2fac2a8b533f5c7ddc837cc681d9
4
+ data.tar.gz: b80386bc99e6d4ef2f8e75fe3f4147636fe8fab0
5
5
  SHA512:
6
- metadata.gz: 87a33051d23ace04eeb7c0150c3ebaaed29f27f3b2b2718600fb5c5ee0a319f3fc7c99bf1b04d47cc45ea8b6eb55e7d123cfa3bdb1a4506bcbe6fc0e176da4bc
7
- data.tar.gz: 5e67436275fcb19fa193c4ae5c7e7ff3f357de455ed111e1ee78a2698c2f62b3a4716627e79b5361bbf154c29c012548e43bd4e10c5a7fb63f0bd220bddb0d47
6
+ metadata.gz: 5a9eb9f7baa82017b4080946ca021a6506687ea8fa84457c78a8432b0b3b3df39e4b53cd6502ad887301653f06676c324192e9d499a67fe4f1780edead251aae
7
+ data.tar.gz: 1c8124d2cfa1261aed98b2d694710c33b1786a86c63d96e07f97031c7a9eb40dad2a4d52c7a07c970d167cc4c2ebe24c3179da5019cca4d5025387de955fb3ea
data/README.md CHANGED
@@ -1,28 +1,18 @@
1
1
  # MakeDirsFromList
2
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
3
+ Create a directory structure from data in a spreadsheet given a directory name template as an argument.
6
4
 
7
5
  ## Installation
8
6
 
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:
7
+ Open the terminal and run:
20
8
 
21
9
  $ gem install make_dirs_from_list
22
10
 
23
11
  ## Usage
24
12
 
25
- TODO: Write usage instructions here
13
+ $ make_dirs_from_list path/to/sheet.xlsx /target/parent/dir "F3_F4"
14
+
15
+ The directory name template "F3_F4" denotes column placeholders i.e. for each row of the spreadsheet, get data in column 3 and 4 and join together with a "_".
26
16
 
27
17
  ## Development
28
18
 
@@ -32,5 +22,5 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
22
 
33
23
  ## Contributing
34
24
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/make_dirs_from_list.
25
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[DiegoSalazar]/make_dirs_from_list.
36
26
 
@@ -1,3 +1,3 @@
1
1
  module MakeDirsFromList
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: make_dirs_from_list
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Diego Salazar