lutra 0.1.0 → 0.1.1

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/lutra +3 -2
  3. data/lib/lutra/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7f8c765a1000685a3016a70883f677a1b04f2d8e
4
- data.tar.gz: 28ebafeccba7985f66f792eb95147612458df62a
3
+ metadata.gz: 120c9b5137a29993b0cf99cf77d4fd973ca5c6dc
4
+ data.tar.gz: 129e3e23967864255313f50b34a202ca299bf4d0
5
5
  SHA512:
6
- metadata.gz: 9033f3b86c5bd1faf8c709a02397995420b7f35e36652b8d8cb523af488e818a316a6235470de8458cbf0d01e9ff76f4d1fa54a4ca5e791525838364c795ce6e
7
- data.tar.gz: 910a84648c31d3ae93d903f50c625e52302a4d77ebd2ae44ed36064331244da48efd8d6234ec705387f5a236dccdd18694aa80053f58275aebc094593458854e
6
+ metadata.gz: 2eca1f7883a4068402aef57296caa1d031f7d2e69e7dd88e911e53723c055b424b7ab32b728fb20381910b180b748a3353900c30009528882b9190e6a059e590
7
+ data.tar.gz: 05f875eb64f93cc561629ade90eac7fb4800ec968c4cf05e3555cdb5bdf8f5c4ea1b590d9db301259399d6be8cf835bb7074cd8295c533b5c2b8418430c97d3a
data/bin/lutra CHANGED
@@ -2,12 +2,13 @@
2
2
  require 'optparse'
3
3
  require 'find'
4
4
  require 'lutra'
5
+ require 'lutra/version'
5
6
 
6
7
  verbose = false
7
8
  color = STDOUT.tty?
8
9
  usage = 'Usage: lutra [OPTIONS] [PATH]'
9
10
  tags = Lutra::TAGS
10
- comments = Lutra::COMM
11
+ comments = Lutra::COMMENTS
11
12
  formatter_name = :default
12
13
  formatter_opts = {}
13
14
 
@@ -54,7 +55,7 @@ rescue => e
54
55
  exit 1
55
56
  end
56
57
 
57
- scanner = Lutra::Scanner.new(tags, comments)
58
+ scanner = Lutra::Scanner.new(tags: tags, comments: comments)
58
59
 
59
60
  Find.find(*paths) do |path|
60
61
  unless paths.include?(path)
data/lib/lutra/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lutra
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lutra
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuri Artemev