arpeggio 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: fd068ffdd2e66d6e4c9796cc021ab0378268708af4ebc3a06bf4e4ebf727b60a
4
- data.tar.gz: eb21f1f9397f919636819480463ee1e7967e623ece7e87fbe19e0f125fe6d7b0
3
+ metadata.gz: 8a968784be90726d112891ecf876ce805f0dabce2a2b5b3bc15ce7e1175b2df5
4
+ data.tar.gz: c015df4ae04939fa14b7c91b48e1781133aaa8475f112aa6ee8630cab93c410e
5
5
  SHA512:
6
- metadata.gz: 45e6c8609ca306a609a31c4324dbf0532e69842aa525f95d837f6cd2816a86efea45e4b809014e80ad6136964f2bd651d34718b3f2b0deb7775d031599f573cb
7
- data.tar.gz: ae994db2aa81fc3003b5552bc273fd32253305a64dcf606fa7dbcbe9074d65b9ab71c05fb9f026c132fd1b6346e90ca0efda36fa771745ad59f337ff6c35743f
6
+ metadata.gz: e9e3019c0d9137e08ae371ca3ad97d3b9f6729370caefbf706f546ca2fae06e00ce074978f225b8bf52cbc13b1a3f683ee51bb69f65aba4706221e21a35ca989
7
+ data.tar.gz: bd761b759cb1042b672fa01403e292f6c0bd9f83487384c42c96403f25abfb689a5c8fbc6b225244e11490fbc3a9d9e2a522f53921c2bb166d9ef9cf6f775e1b
@@ -3,6 +3,7 @@ require_relative 'lib/arpeggio/version'
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "arpeggio"
5
5
  spec.version = Arpeggio::VERSION
6
+ spec.executables = 'arpeggio'
6
7
  spec.authors = ["William Barela"]
7
8
  spec.email = ["william.barela.dev@gmail.com"]
8
9
 
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'arpeggio'
4
+ Arpeggio.about
@@ -1,4 +1,4 @@
1
1
  module Arpeggio
2
2
  # ||= could be used to avoid warning error in pry; however, this should not be done to avoid breaking the gem assuming the user updates the version
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arpeggio
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
  - William Barela
@@ -14,7 +14,8 @@ description: Arpeggio lets you view the notes and intervals of a given scale and
14
14
  in the CLI
15
15
  email:
16
16
  - william.barela.dev@gmail.com
17
- executables: []
17
+ executables:
18
+ - arpeggio
18
19
  extensions: []
19
20
  extra_rdoc_files: []
20
21
  files:
@@ -28,6 +29,7 @@ files:
28
29
  - arpeggio.gemspec
29
30
  - bin/console
30
31
  - bin/setup
32
+ - exe/arpeggio
31
33
  - lib/arpeggio.rb
32
34
  - lib/arpeggio/version.rb
33
35
  homepage: https://github.com/WilliamBarela/arpeggio