musa-dsl 0.21.0 → 0.21.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: 41f779e846e1b9c6a9281384feca8f04e5f43e115847c33fa53874418ef332ca
4
- data.tar.gz: 1d22315101af69d0a49fcee3146328bcf7e979fc6a8d663a54240bec7424667e
3
+ metadata.gz: f6666b6d9729d138be960000a3dd86a517f9ed94031d74a6eab25b76052d45c5
4
+ data.tar.gz: a6806869e3f06e54bc5596f71c35cfff8a9513504653a889e57287d227990419
5
5
  SHA512:
6
- metadata.gz: 489fd45c150778a288b054cf6a90ed435332606adeeb2804a6c3e6007e5c05339c9f7aeb4e1a905df19668c0108beb8dbe079821f7999d31a288c9dafc6430ff
7
- data.tar.gz: 38fb6c56f67a8a44f900d60132a7ebae87ea247167f786ef68f1fb8bb8ed6faa6d4ea748ae8751350c0e7408ac9d80b4cbe4b3b93527fb672afe689bb35aa5e7
6
+ metadata.gz: 531fbb701e5774e11a1a1dc373308fada1f777c6b8c7981e8a27ffd1ddb3c242bc1e5723555553010d4ff10259c7c69cd2e2428b9d0eab65ef96ae8b13b14f7b
7
+ data.tar.gz: c2db1fae44b49ee11fd8dd5d764dee4c7416c4b7fb6ce075213f84207d54cd7b5cc6301f59a74a723b467a103c74c779f68f9a946c0fcdd92fefbe77d26758c0
data/Gemfile CHANGED
@@ -2,7 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  group :neuma do
4
4
  gem 'citrus', '~> 3.0.0'
5
-
6
5
  end
7
6
 
8
7
  group :transport do
@@ -1,5 +1,5 @@
1
1
  module Musa
2
- VERSION = '0.21.0'
2
+ VERSION = '0.21.1'
3
3
  end
4
4
 
5
5
  require_relative 'musa-dsl/core-ext'
@@ -55,7 +55,7 @@ module Musa
55
55
  r >= accumulated - probability && r < accumulated }[0]
56
56
 
57
57
  when Proc
58
- procedure_binder = @procedure_binders[options] ||= SmartProcBinder.new options
58
+ procedure_binder = @procedure_binders[options] ||= SmartProcBinder.new(options)
59
59
  @current = procedure_binder.call @history
60
60
  else
61
61
  raise ArgumentError, "Option #{option} is not allowed. Only Array, Hash or Proc are allowed."
@@ -24,6 +24,7 @@ module Musa
24
24
  end
25
25
  end
26
26
 
27
+
27
28
  alias_method :neumas, :to_neumas
28
29
  alias_method :n, :to_neumas
29
30
  alias_method :nn, :to_neumas_to_node
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'musa-dsl'
3
- s.version = '0.21.0'
4
- s.date = '2020-10-02'
3
+ s.version = '0.21.1'
4
+ s.date = '2020-10-09'
5
5
  s.summary = 'A simple Ruby DSL for making complex music'
6
6
  s.description = 'Musa-DSL: A Ruby DSL for algorithmic music composition, device language neutral (MIDI, OSC, etc)'
7
7
  s.authors = ['Javier Sánchez Yeste']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: musa-dsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.21.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Sánchez Yeste
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-02 00:00:00.000000000 Z
11
+ date: 2020-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: citrus
@@ -215,7 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
215
215
  - !ruby/object:Gem::Version
216
216
  version: '0'
217
217
  requirements: []
218
- rubygems_version: 3.1.2
218
+ rubygems_version: 3.1.4
219
219
  signing_key:
220
220
  specification_version: 4
221
221
  summary: A simple Ruby DSL for making complex music