step_sequencer 1.0.7 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 35e70912bfa1e7b6f09f3934f4f8937333aeb62e
4
- data.tar.gz: 734b86e139fd8d55bb65a94b8db6edadb4e26a56
3
+ metadata.gz: a8197aba287eccd8090a7e9f2b01283772e0c5e4
4
+ data.tar.gz: eb6e67cedc417e9f15dee6683b7b6b5d7ffbc320
5
5
  SHA512:
6
- metadata.gz: bcf615d12d4924b6b6066a413c714acc08ae94f776d0f4af63617908fb109720f712ea73d996d5071229b7de9c73fb866920d0f8656da91129d7c5cd9ded0a52
7
- data.tar.gz: 0e864b28ece6903840a12fec93f38db3de186b7802e504ef46b69e51b666650a6efd9f4daf9b0e8c24c63a632d874adcb0ea87afffd48ffd95a01d680b7a8a23
6
+ metadata.gz: 30a105636f0525fdb01a9516ca22026c229e4c40d5b3c8b2f4fee9eac0eb253ac4ac376f125c3783ad62f3f1fe121d4e96473b10dae0ff05e597fe75a90e0ef0
7
+ data.tar.gz: 247f503823c2ffb2038b271f9f8688c97d7dda467fbe4c0b598191e0ed5a4ad7a7833a2215f517f5e61671cf0a9552ac3bdea2ddc52d4f4e927af26bde1f035d
data/README.md CHANGED
@@ -54,9 +54,9 @@ There are two main components: `StepSequencer::SoundBuilder` and
54
54
 
55
55
  ### StepSequencer::SoundBuilder
56
56
 
57
- This offers only one public method, `.build`, which is overloaded
58
- and dispatches to a number of other classes (each of which is responsible for
59
- a single effect).
57
+ This offers only one method, `.build`, which is overloaded and dispatches to a
58
+ number of other classes (each of which is responsible for
59
+ a single effect).
60
60
 
61
61
  _note_
62
62
 
@@ -18,7 +18,7 @@ class StepSequencer::SoundBuilder
18
18
  end
19
19
 
20
20
  class << self
21
- public
21
+ private
22
22
  def effects_components
23
23
  StepSequencer::SoundBuilder::EffectsComponents
24
24
  end
@@ -42,7 +42,7 @@ class StepSequencer::SoundPlayer
42
42
  @limit = nil # an upper limit for steps_played, defaults to no limit
43
43
  end
44
44
 
45
- public
45
+ private
46
46
 
47
47
  def build_matrix_from_string(string)
48
48
  string.tr(" ", '').gsub(/\#.+$/, '').split("\n").map(&:chars).map do |chars|
@@ -1,7 +1,7 @@
1
1
  # =============================================================================
2
2
  # A custom test runner. The tests themselves are in test_cases.rb
3
3
  # Usage: StepSequencer::Tests.run
4
- # The public method run_test_collection can also be used; it's more modular.
4
+ # The private method run_test_collection can also be used; it's more modular.
5
5
  # =============================================================================
6
6
 
7
7
  class StepSequencer::Tests
@@ -30,7 +30,7 @@ class StepSequencer::Tests
30
30
  end
31
31
 
32
32
  class << self
33
- public
33
+ private
34
34
 
35
35
  def builder_tests
36
36
  StepSequencer::Tests::TestCases::Builder
@@ -86,7 +86,7 @@ class StepSequencer::Tests
86
86
 
87
87
  # Helpers made available to test cases (if they include the module)
88
88
  module TestCaseHelpers
89
- public
89
+ private
90
90
  def asset_path(name)
91
91
  Gem.find_files("step_sequencer/test_assets/#{name}.mp3")[0]
92
92
  end
data/lib/version.rb CHANGED
@@ -1,3 +1,4 @@
1
1
  module StepSequencer
2
- VERSION = '1.0.7'
2
+ VERSION = '1.0.8'
3
+
3
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: step_sequencer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - max pleaner