tablature_hero 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 834a1f61f27cfa236bf7879bd223ecc6827ea9edb7864b3fb0b5be01aa0f8d24
4
- data.tar.gz: 49bfd8f048f270b7b96782eb2920883036d3c6ccd1c5bf4a77ba58c59ce14501
3
+ metadata.gz: 795005641e621c4294bba428c99b734a81b0992e3bcb7bc0b5be00432baf0ede
4
+ data.tar.gz: 20e7ccfba09d00aa65b58632dcfa87072fadd294872bc7db8a24562116c4a20c
5
5
  SHA512:
6
- metadata.gz: c90afd8ce525cf7a942e728de86a57288d89a9f5f1133ec3f1081169606622f1c5948191fba7d61d6709cdcd328f6fc63ff98423c05a81982bdafd6ef1c34d9a
7
- data.tar.gz: 5249ae8ea06a6af10014e885329d6737470692adbacf0ac1054e636977abfa5e9eab7749cebbff3e1e0e4838dfe9beb11a517283d0128e9ea0171ac031b0449a
6
+ metadata.gz: 819fa0e4a1783cc34c02bf9704609e6516a5ed41708c2fffff939773e5ad6916b5de9e817cb43ed95d11b93eba6db39ae75967213594cc412f1b39eff2643ee2
7
+ data.tar.gz: fbd1b0cdbfe73f7cb58a426ef6602d7ced9d13c55531215c3c419f3fbe3bdfcdceeb08378f4a0aa69a994ab137cef6ce24172d3fc88e3ac7ff1520ce1061e762
data/Gemfile.lock ADDED
@@ -0,0 +1,61 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ tablature_hero (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.2)
10
+ diff-lcs (1.5.0)
11
+ json (2.6.3)
12
+ language_server-protocol (3.17.0.3)
13
+ parallel (1.23.0)
14
+ parser (3.2.2.4)
15
+ ast (~> 2.4.1)
16
+ racc
17
+ racc (1.7.3)
18
+ rainbow (3.1.1)
19
+ rake (13.1.0)
20
+ regexp_parser (2.8.2)
21
+ rexml (3.2.6)
22
+ rspec (3.12.0)
23
+ rspec-core (~> 3.12.0)
24
+ rspec-expectations (~> 3.12.0)
25
+ rspec-mocks (~> 3.12.0)
26
+ rspec-core (3.12.2)
27
+ rspec-support (~> 3.12.0)
28
+ rspec-expectations (3.12.3)
29
+ diff-lcs (>= 1.2.0, < 2.0)
30
+ rspec-support (~> 3.12.0)
31
+ rspec-mocks (3.12.6)
32
+ diff-lcs (>= 1.2.0, < 2.0)
33
+ rspec-support (~> 3.12.0)
34
+ rspec-support (3.12.1)
35
+ rubocop (1.57.2)
36
+ json (~> 2.3)
37
+ language_server-protocol (>= 3.17.0)
38
+ parallel (~> 1.10)
39
+ parser (>= 3.2.2.4)
40
+ rainbow (>= 2.2.2, < 4.0)
41
+ regexp_parser (>= 1.8, < 3.0)
42
+ rexml (>= 3.2.5, < 4.0)
43
+ rubocop-ast (>= 1.28.1, < 2.0)
44
+ ruby-progressbar (~> 1.7)
45
+ unicode-display_width (>= 2.4.0, < 3.0)
46
+ rubocop-ast (1.30.0)
47
+ parser (>= 3.2.1.0)
48
+ ruby-progressbar (1.13.0)
49
+ unicode-display_width (2.5.0)
50
+
51
+ PLATFORMS
52
+ arm64-darwin-22
53
+
54
+ DEPENDENCIES
55
+ rake (~> 13.0)
56
+ rspec (~> 3.0)
57
+ rubocop (~> 1.21)
58
+ tablature_hero!
59
+
60
+ BUNDLED WITH
61
+ 2.4.1
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # frozen_string_literal: true
4
+
5
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), "..", "lib")
6
+
7
+ require "tablature_hero"
8
+
9
+ puts "running tablature_hero #{TablatureHero::VERSION}"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TablatureHero
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -5,15 +5,14 @@ require_relative "lib/tablature_hero/version"
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "tablature_hero"
7
7
  spec.version = TablatureHero::VERSION
8
- spec.authors = ["Frederic Robert","Mark Ryall"]
9
- spec.email = ["pf.robert974@gmail.com","mark.ryall@gmail.com"]
8
+ spec.authors = ["Frederic Robert", "Mark Ryall"]
9
+ spec.email = ["pf.robert974@gmail.com", "mark.ryall@gmail.com"]
10
10
 
11
11
  spec.summary = "Guitar Tabs and Metronome."
12
12
  spec.homepage = "https://github.com/pfr974/tablature_hero"
13
13
  spec.license = "MIT"
14
14
  spec.required_ruby_version = ">= 2.6.0"
15
15
 
16
-
17
16
  spec.metadata = {
18
17
  "rubygems_mfa_required" => "true"
19
18
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tablature_hero
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
  - Frederic Robert
@@ -15,7 +15,8 @@ description:
15
15
  email:
16
16
  - pf.robert974@gmail.com
17
17
  - mark.ryall@gmail.com
18
- executables: []
18
+ executables:
19
+ - tablature_hero
19
20
  extensions: []
20
21
  extra_rdoc_files: []
21
22
  files:
@@ -24,9 +25,11 @@ files:
24
25
  - CHANGELOG.md
25
26
  - CODE_OF_CONDUCT.md
26
27
  - Gemfile
28
+ - Gemfile.lock
27
29
  - LICENSE.txt
28
30
  - README.md
29
31
  - Rakefile
32
+ - exe/tablature_hero
30
33
  - lib/tablature_hero.rb
31
34
  - lib/tablature_hero/version.rb
32
35
  - sig/tablature_hero.rbs