midiator 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,19 +17,19 @@
17
17
  require File.join( File.dirname(__FILE__), 'lib', 'spec_helper.rb' )
18
18
 
19
19
  describe "MIDIator's extensions to Ruby's String class" do
20
- it "converts under_scored strings to CamelCase" do
21
- "this_is_some_strings".camelize.should == "ThisIsSomeStrings"
22
- end
20
+ it "converts under_scored strings to CamelCase" do
21
+ "this_is_some_strings".camelize.should == "ThisIsSomeStrings"
22
+ end
23
23
 
24
- it "converts file path strings to module paths" do
25
- "some/file/lives/here".camelize.should == "Some::File::Lives::Here"
26
- end
24
+ it "converts file path strings to module paths" do
25
+ "some/file/lives/here".camelize.should == "Some::File::Lives::Here"
26
+ end
27
27
 
28
- it "converts CamelCase strings to under_scored" do
29
- "TheseStringsBeCamelly".underscore.should == "these_strings_be_camelly"
30
- end
28
+ it "converts CamelCase strings to under_scored" do
29
+ "TheseStringsBeCamelly".underscore.should == "these_strings_be_camelly"
30
+ end
31
31
 
32
- it "converts module path strings to file paths" do
33
- "This::Is::A::Module".underscore.should == "this/is/a/module"
34
- end
32
+ it "converts module path strings to file paths" do
33
+ "This::Is::A::Module".underscore.should == "this/is/a/module"
34
+ end
35
35
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: midiator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Bleything
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-11-23 00:00:00 -08:00
12
+ date: 2009-04-02 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -40,6 +40,7 @@ files:
40
40
  - lib/midiator/drivers/alsa.rb
41
41
  - lib/midiator/drivers/core_midi.rb
42
42
  - lib/midiator/drivers/dls_synth.rb
43
+ - lib/midiator/drivers/mmj.rb
43
44
  - lib/midiator/drivers/winmm.rb
44
45
  - lib/midiator/drums.rb
45
46
  - lib/midiator/exceptions.rb
@@ -48,8 +49,12 @@ files:
48
49
  - lib/midiator/timer.rb
49
50
  - lib/midiator.rb
50
51
  - lib/string_extensions.rb
52
+ - examples/amen_break.rb
53
+ - examples/chords.rb
51
54
  - examples/chromatic_scale.rb
55
+ - examples/drum_chords.rb
52
56
  - examples/metronome.rb
57
+ - examples/synth.rb
53
58
  - examples/twinkle.rb
54
59
  - misc/rake/packaging.rb
55
60
  - misc/rake/rdoc.rb