dotsmack 0.4 → 0.5

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -20
  3. data/lib/dotsmack.rb +2 -0
  4. data/lib/version.rb +1 -1
  5. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f45fa84b886c17669eb302fdc14cbb79f364c317
4
- data.tar.gz: b91bf065676b2cc95c84d825c2989f9457444926
3
+ metadata.gz: c01080fac62a39b834f6c3f7d5f670b7ceb1579c
4
+ data.tar.gz: 9385965b347fa3d3ac4ca28a078cc245f76f37c2
5
5
  SHA512:
6
- metadata.gz: ef280a051cf192725c25cf596bd29af5e03b0abc94339379e5940285901390634b0dbc5842b5a9e0dd92f4abfd184d7a8d2086144c5323119db8a17492f822c3
7
- data.tar.gz: 3c19ba0f082c3139ec2b8e3fcb41016819427738c7403ad126b5a45b08b76bdabe3391ee5361df69bd87af750176ee48a783796f45db1a3980becd527ccbc83b
6
+ metadata.gz: a20336636e0cc59fae29b6343a0148faca66b30e1e4de37c5a64d33ebbf40431cc472445b40a4576c975956dda8655722707834411d7b86f15019b0bb278a6b6
7
+ data.tar.gz: 4ffa05e692a3cd6489356eb0ffbabb2ae071ae5a0d26a39e848a4250e9a6237977db9e0e5cf314d028afbef0f604dee3513ffd19e37ddaef4b4a89b641f1585c
data/README.md CHANGED
@@ -1,23 +1,8 @@
1
1
  # dotsmack - a library for modern, per-directory dotfile configuration
2
2
 
3
- # HOMEPAGE
3
+ dotsmack is a customizable framework for managing per-project configuration files.
4
4
 
5
- https://github.com/mcandre/dotsmack
6
-
7
- # RUBYGEMS
8
-
9
- https://rubygems.org/gems/dotsmack
10
-
11
- # ABOUT
12
-
13
- Dotsmack is a Ruby library for adding modern dotfile customization to your Ruby applications.
14
-
15
- * Recursive file scanning, like `jshint .`
16
- * dotignore files - [fnmatch](http://man.cx/fnmatch) syntax, like `.gitignore`
17
- * dotconfig files - any format (getoptlong, YAML, JSON, ...)
18
- * Searches for dotfiles in `.`, `..`, etc., up to `$HOME`.
19
-
20
- # EXAMPLES
5
+ # EXAMPLE
21
6
 
22
7
  ```
23
8
  $ tree -a examples/twitch/
@@ -39,7 +24,7 @@ examples/twitch/
39
24
 
40
25
  5 directories, 9 files
41
26
 
42
- $ head examples/twitch/bin/twitch
27
+ $ head examples/twitch/bin/twitch
43
28
  #!/usr/bin/env ruby
44
29
 
45
30
  #
@@ -53,10 +38,27 @@ require 'yaml'
53
38
  $ examples/twitch/bin/twitch examples/twitch/test/
54
39
  examples/twitch/test/a-tale-of-two-cities.txt: 614
55
40
 
56
- $ examples/twitch/bin/twitch < examples/twitch/test/a-tale-of-two-cities.txt
41
+ $ examples/twitch/bin/twitch < examples/twitch/test/a-tale-of-two-cities.txt
57
42
  -: 614
58
43
  ```
59
44
 
45
+ # HOMEPAGE
46
+
47
+ https://github.com/mcandre/dotsmack
48
+
49
+ # RUBYGEMS
50
+
51
+ https://rubygems.org/gems/dotsmack
52
+
53
+ # ABOUT
54
+
55
+ Dotsmack is a Ruby library for adding modern dotfile customization to your Ruby applications.
56
+
57
+ * Recursive file scanning, like `jshint .`
58
+ * dotignore files - [fnmatch](http://man.cx/fnmatch) syntax, like `.gitignore`
59
+ * dotconfig files - any format (getoptlong, YAML, JSON, ...)
60
+ * Searches for dotfiles in `.`, `..`, etc., up to `$HOME`.
61
+
60
62
  More examples:
61
63
 
62
64
  * [aspelllint](https://github.com/mcandre/aspelllint)
@@ -67,7 +69,7 @@ More examples:
67
69
 
68
70
  # REQUIREMENTS
69
71
 
70
- * [Ruby](https://www.ruby-lang.org/) 2+
72
+ * [Ruby](https://www.ruby-lang.org/) 2.0+
71
73
 
72
74
  # INSTALL
73
75
 
@@ -1,6 +1,8 @@
1
1
  require 'rubygems'
2
2
  require 'find'
3
3
 
4
+ require_relative 'version'
5
+
4
6
  #
5
7
  # Dotsmack - File, dotignore, and dotconfig scanner.
6
8
  #
@@ -2,5 +2,5 @@
2
2
  # Dotsmack
3
3
  #
4
4
  module Dotsmack
5
- VERSION = '0.4'
5
+ VERSION = '0.5'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dotsmack
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.4'
4
+ version: '0.5'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Pennebaker
@@ -242,7 +242,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
242
242
  requirements:
243
243
  - - '>='
244
244
  - !ruby/object:Gem::Version
245
- version: '0'
245
+ version: '2.0'
246
246
  required_rubygems_version: !ruby/object:Gem::Requirement
247
247
  requirements:
248
248
  - - '>='
@@ -250,7 +250,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
250
250
  version: '0'
251
251
  requirements: []
252
252
  rubyforge_project:
253
- rubygems_version: 2.2.2
253
+ rubygems_version: 2.4.6
254
254
  signing_key:
255
255
  specification_version: 4
256
256
  summary: a library for modern, per-directory dotfile configuration