ruumba 0.1.13 → 0.1.14

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 +5 -5
  2. data/README.md +1 -1
  3. data/bin/ruumba +3 -0
  4. data/lib/ruumba/version.rb +10 -0
  5. metadata +5 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: 7f6f6be7a0cecd225ca69d26a047c30ae09caf5510dc133564f224f1f6251749
4
- data.tar.gz: bd945f742a035fe51614d21ea1780a87c5b9338be18789083772ef12f4b201ce
2
+ SHA1:
3
+ metadata.gz: fafd39b3906f96cb173baba1641bbfa0777a4b3c
4
+ data.tar.gz: 0dba64840915c70dbebe88abf2967ff6d7f446e8
5
5
  SHA512:
6
- metadata.gz: a147c1b22624f9e9e4f91d6caac0ec3348eac4cf2249856c37a53a7af0bd87e1e8c4714494b64a43bcea893a010500d8d05e17b90fe4de9aa1417f10526f0906
7
- data.tar.gz: 63ecf95d93c1cffee87ba859541719af49fcfd75946395093bbbd1c59f1b0f1384ce41509b2800aa441e96677a92c2df68d6dda0ab5c22e383009a966d7b8a32
6
+ metadata.gz: 2904ae4dba8f24ff05aff0edaaf0402fdb595c014fe7cd012451520e376afd029088c4935b87e2035d35b39088262acbb61fd1e6d0564a4c7b5f09bf4de71953
7
+ data.tar.gz: f751620c7c88f2e4cbec5467584f723c49e97c45d3e1e74f2271366f727da6d83888b84485a509acf7bd10cd4c9dbe1167206be9e980a0e2d34d4db46298f7a9
data/README.md CHANGED
@@ -11,7 +11,7 @@ Ruumba
11
11
  Ruumba is [RuboCop's](https://github.com/bbatsov/rubocop) sidekick, allowing you to lint your .erb Rubies as well as your regular-type ones.
12
12
 
13
13
  ## Dependencies
14
- * Ruby 2.3+
14
+ * Ruby 2.4+
15
15
 
16
16
  ## Installation
17
17
  ```bash
data/bin/ruumba CHANGED
@@ -3,9 +3,12 @@
3
3
 
4
4
  require 'optparse'
5
5
  require_relative '../lib/ruumba'
6
+ require_relative '../lib/ruumba/version'
6
7
 
7
8
  options = { arguments: [] }
8
9
  opts_parser = OptionParser.new do |opts|
10
+ opts.version = Ruumba::Version::STRING
11
+
9
12
  opts.banner = 'Usage: ruumba path/to/ERBs/'
10
13
 
11
14
  opts.on('-h', '--help', 'Display this screen') do
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ # @author Andrew Clemons <andrew.clemons@gmail.com>
4
+
5
+ module Ruumba
6
+ # Provides the ruumba version
7
+ module Version
8
+ STRING = '0.1.14'
9
+ end
10
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruumba
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.13
4
+ version: 0.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Weinstein
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2019-09-17 00:00:00.000000000 Z
14
+ date: 2019-11-07 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rubocop
@@ -44,6 +44,7 @@ files:
44
44
  - lib/ruumba/parser.rb
45
45
  - lib/ruumba/rake_task.rb
46
46
  - lib/ruumba/rubocop_runner.rb
47
+ - lib/ruumba/version.rb
47
48
  homepage: https://github.com/ericqweinstein/ruumba
48
49
  licenses:
49
50
  - MIT
@@ -63,7 +64,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
63
64
  - !ruby/object:Gem::Version
64
65
  version: '0'
65
66
  requirements: []
66
- rubygems_version: 3.0.6
67
+ rubyforge_project:
68
+ rubygems_version: 2.6.14.4
67
69
  signing_key:
68
70
  specification_version: 4
69
71
  summary: Allows users to lint Ruby code in ERB templates the same way they lint source