zgomot 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.
- data/README.rdoc +4 -0
 - data/VERSION +1 -1
 - data/lib/zgomot/midi/channel.rb +1 -1
 - data/zgomot.gemspec +2 -2
 - metadata +4 -4
 
    
        data/README.rdoc
    CHANGED
    
    | 
         @@ -188,6 +188,8 @@ An chord progression in a key of F# dorian at octave 5 with notes of half note l 
     | 
|
| 
       188 
188 
     | 
    
         
             
            * <tt>inv!(number)</tt>: The inversion number. A value of zero will leave the chord unchanged, 1 is the first inversion and 2 is the second. Higher inversions just shift the chord to a higher octave.
         
     | 
| 
       189 
189 
     | 
    
         
             
            * <tt>rev!</tt>: Reverse the order in which the notes are played. Only noticeable if the chords in the progression are also arpeggiated.
         
     | 
| 
       190 
190 
     | 
    
         | 
| 
      
 191 
     | 
    
         
            +
            Progressions internally are arrays of notes so all methods supported by the Ruby <tt>Array</tt> class are also supported.
         
     | 
| 
      
 192 
     | 
    
         
            +
             
     | 
| 
       191 
193 
     | 
    
         
             
            == Note Progressions
         
     | 
| 
       192 
194 
     | 
    
         | 
| 
       193 
195 
     | 
    
         
             
            Note Progressions are similar to chord progressions but are composed of notes instead of chords. Most of the options and transformation are the same. To define a Note Progression use,
         
     | 
| 
         @@ -215,6 +217,8 @@ An note progression in a key of F# dorian at octave 5 with notes of half note le 
     | 
|
| 
       215 
217 
     | 
    
         
             
            * <tt>bpm!(bpm)</tt>: change the bits per minute at which the chord is played.
         
     | 
| 
       216 
218 
     | 
    
         
             
            * <tt>octave!(ocatve)</tt>: change the octave of all notes in the progression.
         
     | 
| 
       217 
219 
     | 
    
         | 
| 
      
 220 
     | 
    
         
            +
            Progressions internally are arrays of notes so all methods supported by the Ruby <tt>Array</tt> class are also supported.
         
     | 
| 
      
 221 
     | 
    
         
            +
             
     | 
| 
       218 
222 
     | 
    
         
             
            == Patterns
         
     | 
| 
       219 
223 
     | 
    
         | 
| 
       220 
224 
     | 
    
         
             
            Patterns are heterogeneous arrays of notes, chords, Chord Progressions and Note Progressions. Operations applied to the pattern will be delegated to the appropriate elements of the pattern array. Patterns also support all methods supported by Ruby the <tt>Array</tt> class.
         
     | 
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            0.1. 
     | 
| 
      
 1 
     | 
    
         
            +
            0.1.1
         
     | 
    
        data/lib/zgomot/midi/channel.rb
    CHANGED
    
    
    
        data/zgomot.gemspec
    CHANGED
    
    | 
         @@ -5,11 +5,11 @@ 
     | 
|
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            Gem::Specification.new do |s|
         
     | 
| 
       7 
7 
     | 
    
         
             
              s.name = %q{zgomot}
         
     | 
| 
       8 
     | 
    
         
            -
              s.version = "0.1. 
     | 
| 
      
 8 
     | 
    
         
            +
              s.version = "0.1.1"
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
10 
     | 
    
         
             
              s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
         
     | 
| 
       11 
11 
     | 
    
         
             
              s.authors = ["Troy Stribling"]
         
     | 
| 
       12 
     | 
    
         
            -
              s.date = %q{ 
     | 
| 
      
 12 
     | 
    
         
            +
              s.date = %q{2011-04-03}
         
     | 
| 
       13 
13 
     | 
    
         
             
              s.default_executable = %q{zgomot}
         
     | 
| 
       14 
14 
     | 
    
         
             
              s.email = %q{troy.stribling@gmail.com}
         
     | 
| 
       15 
15 
     | 
    
         
             
              s.executables = ["zgomot"]
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,13 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: zgomot
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              hash:  
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 25
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       6 
6 
     | 
    
         
             
              segments: 
         
     | 
| 
       7 
7 
     | 
    
         
             
              - 0
         
     | 
| 
       8 
8 
     | 
    
         
             
              - 1
         
     | 
| 
       9 
     | 
    
         
            -
              -  
     | 
| 
       10 
     | 
    
         
            -
              version: 0.1. 
     | 
| 
      
 9 
     | 
    
         
            +
              - 1
         
     | 
| 
      
 10 
     | 
    
         
            +
              version: 0.1.1
         
     | 
| 
       11 
11 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       12 
12 
     | 
    
         
             
            authors: 
         
     | 
| 
       13 
13 
     | 
    
         
             
            - Troy Stribling
         
     | 
| 
         @@ -15,7 +15,7 @@ autorequire: 
     | 
|
| 
       15 
15 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       16 
16 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       17 
17 
     | 
    
         | 
| 
       18 
     | 
    
         
            -
            date:  
     | 
| 
      
 18 
     | 
    
         
            +
            date: 2011-04-03 00:00:00 -04:00
         
     | 
| 
       19 
19 
     | 
    
         
             
            default_executable: zgomot
         
     | 
| 
       20 
20 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       21 
21 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     |