pragmater 5.0.1 → 5.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f007b6c669ca736588411ff64cd61c60a8771dda51f08fdbd03dd1c3619ed815
4
- data.tar.gz: 83bce9e99e9be5441d12a7bdc8d54374061f730b50a1b154714fe5a2ce6c1dea
3
+ metadata.gz: 9d207f1d3b63fba912f2f781c3e2f7b9175b05761940d692b3234dea30c06a9e
4
+ data.tar.gz: db2f6c630023f76b4163679cccf8c447b5ea341f41e534f79505389103377aca
5
5
  SHA512:
6
- metadata.gz: c8e3b10aef5e339d87be6467ee94d95600496327b58bd4323eb31c42cea262bf9ee8b5013f15857c2c22ef682f4fa2f5c94f519e0f064efc5d0b09d82e339e01
7
- data.tar.gz: c085d0a535b06b84a24773a8e42613509a6cef61fa6715b873218f52f900df50ad4fa680991a0a0a1bf675031b3a100217350d43905fb4379ce4a4308e469b52
6
+ metadata.gz: 37b22ae14a11750281782cf0c540364f0a149326885ca93e24b4110b2a0f8b4436db53871c8784758361daefb67975ce6cdf496d4b9c8183f9c70d9636edf36e
7
+ data.tar.gz: e929ba3fce0169fa21716d1791744b49b4c4c42deca2b0c049376746dc33ff4c3b59a5600ef94b2e6ea4a700e9105fe60f07da522e26e5853517300a371ffecc
data/README.md CHANGED
@@ -5,7 +5,6 @@
5
5
  [![Code Climate Test Coverage](https://api.codeclimate.com/v1/badges/f0971ab6985309ce4db4/test_coverage)](https://codeclimate.com/github/bkuhlmann/pragmater/test_coverage)
6
6
  [![Gemnasium Status](https://gemnasium.com/bkuhlmann/pragmater.svg)](https://gemnasium.com/bkuhlmann/pragmater)
7
7
  [![Circle CI Status](https://circleci.com/gh/bkuhlmann/pragmater.svg?style=svg)](https://circleci.com/gh/bkuhlmann/pragmater)
8
- [![Patreon](https://img.shields.io/badge/patreon-donate-brightgreen.svg)](https://www.patreon.com/bkuhlmann)
9
8
 
10
9
  A command line interface for managing/formatting source file
11
10
  [directive pragma](https://en.wikipedia.org/wiki/Directive_(programming)) comments
@@ -52,7 +51,7 @@ or multiple Ruby source files in order to benefit from improved memory and concu
52
51
 
53
52
  ## Screencasts
54
53
 
55
- [![asciicast](https://asciinema.org/a/91755.png)](https://asciinema.org/a/91755)
54
+ [![asciicast](https://asciinema.org/a/155880.png)](https://asciinema.org/a/155880)
56
55
 
57
56
  ## Requirements
58
57
 
@@ -79,8 +78,8 @@ From the command line, type: `pragmater help`
79
78
  Both the `--add` and `--remove` commands support options for specifying pragma comments and/or
80
79
  included files (viewable by running `pragmater --help --add` or `pragmater --help --remove`):
81
80
 
82
- -c, [--comments=one two three] # Pragma comments
83
- -w, [--includes=one two three] # File include list
81
+ -c, [--comments=one two three] # Pragma comments
82
+ -i, [--includes=one two three] # File include list
84
83
 
85
84
  ### Customization
86
85
 
@@ -170,7 +169,7 @@ Read [CONTRIBUTING](CONTRIBUTING.md) for details.
170
169
 
171
170
  ## License
172
171
 
173
- Copyright (c) 2015 [Alchemists](https://www.alchemists.io).
172
+ Copyright 2015 [Alchemists](https://www.alchemists.io).
174
173
  Read [LICENSE](LICENSE.md) for details.
175
174
 
176
175
  ## History
data/lib/pragmater/cli.rb CHANGED
@@ -38,17 +38,14 @@ module Pragmater
38
38
  aliases: "-c",
39
39
  desc: "Pragma comments",
40
40
  type: :array,
41
- default: []
41
+ default: configuration.to_h.dig(:add, :comments)
42
42
  method_option :includes,
43
- aliases: "-w",
43
+ aliases: "-i",
44
44
  desc: "File include list",
45
45
  type: :array,
46
- default: []
46
+ default: configuration.to_h.dig(:add, :includes)
47
47
  def add path = "."
48
- settings = configuration.merge add: {
49
- comments: options[:comments],
50
- includes: options[:includes]
51
- }
48
+ settings = configuration.merge add: {comments: options.comments, includes: options.includes}
52
49
 
53
50
  runner = Runner.new path,
54
51
  comments: settings.dig(:add, :comments),
@@ -63,16 +60,16 @@ module Pragmater
63
60
  aliases: "-c",
64
61
  desc: "Pragma comments",
65
62
  type: :array,
66
- default: []
63
+ default: configuration.to_h.dig(:remove, :comments)
67
64
  method_option :includes,
68
- aliases: "-w",
65
+ aliases: "-i",
69
66
  desc: "File include list",
70
67
  type: :array,
71
- default: []
68
+ default: configuration.to_h.dig(:remove, :includes)
72
69
  def remove path = "."
73
70
  settings = configuration.merge remove: {
74
- comments: options[:comments],
75
- includes: options[:includes]
71
+ comments: options.comments,
72
+ includes: options.includes
76
73
  }
77
74
 
78
75
  runner = Runner.new path,
@@ -12,7 +12,7 @@ module Pragmater
12
12
  end
13
13
 
14
14
  def self.version
15
- "5.0.1"
15
+ "5.0.2"
16
16
  end
17
17
 
18
18
  def self.version_label
metadata CHANGED
@@ -1,36 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pragmater
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1
4
+ version: 5.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain:
11
- - |
12
- -----BEGIN CERTIFICATE-----
13
- MIIDeDCCAmCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBBMQ8wDQYDVQQDDAZicm9v
14
- a2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQBGRYC
15
- aW8wHhcNMTcxMDI5MjExMDE0WhcNMTgxMDI5MjExMDE0WjBBMQ8wDQYDVQQDDAZi
16
- cm9va2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQB
17
- GRYCaW8wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCw5ljqJRwCHI+L
18
- DHJM8mLBNg/PMlK/pVlesbOOnw9yOh04cUX4FNDzGG7MUIbZel55a2FCGpnPcR23
19
- rXNYbdJ69G4pCEZVRHd93EV3mTldlr3cqdJM+V4F9kk3Y5G0AdkEjet0U9CgmNg/
20
- J8fp7mek76hsG5AFZ+maZ2bOGTlA4Gnpp/wenFm6i9Y5upNfa0zHqpAlgOOIWRCx
21
- nVYTPpMrBUVE4B1eoWBkcQwYkj4bi+CZnZdOZNmA1ELXzD7o8fcQc+WyEuvSbQNE
22
- 5G/I2z/u3zvXAw4U8PjrCzmqnX4WeshYe+iXTyEkWyDHyGwaWgNvoM/Vqjc91+vh
23
- jYLquh2zAgMBAAGjezB5MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
24
- BBTiE6OzW/ceoLiVO4SM9+loBja7OjAfBgNVHREEGDAWgRRicm9va2VAYWxjaGVt
25
- aXN0cy5pbzAfBgNVHRIEGDAWgRRicm9va2VAYWxjaGVtaXN0cy5pbzANBgkqhkiG
26
- 9w0BAQUFAAOCAQEAUlRO4tInUyc1/mZiYVkRiCEIiIwSXELsMKWh6m8DxAz+LX6E
27
- f8h0dQjc3u/VLnaLvbyoOTREAWrH+Cw/YiYJQASiZlcxHFXW0Ot80oM1voUJz2Yx
28
- 9VnYfwk9o8lnK/rlE+n76UctPqYC07etDZqEnPC+Znbn3/rQM8ZeUWQb3E/Dwg4e
29
- 3f4nvMy3WbUv7zq8PrM64D+vQPvLrFwlrQkhHnd20IC6LTrInnr3TJybMnmho45j
30
- MQXa5aqjoFEODxVbBBI6NyNVH4gMKDsILEFlH/mcBQKKQwXj2McJmB8jIG+WuKoE
31
- GyTL6s+8CnN9sL2Spfh/YdRn/29r4g2qi6FomQ==
32
- -----END CERTIFICATE-----
33
- date: 2018-01-01 00:00:00.000000000 Z
10
+ cert_chain: []
11
+ date: 2018-01-06 00:00:00.000000000 Z
34
12
  dependencies:
35
13
  - !ruby/object:Gem::Dependency
36
14
  name: runcom
checksums.yaml.gz.sig DELETED
Binary file
data.tar.gz.sig DELETED
Binary file
metadata.gz.sig DELETED
Binary file