osc-ruby 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/lib/osc-ruby.rb +0 -2
- data/spec/spec_helper.rb +2 -7
- metadata +3 -3
data/Rakefile
CHANGED
@@ -34,7 +34,7 @@ begin
|
|
34
34
|
gem.authors = ["aberant"]
|
35
35
|
gem.files = FileList['Rakefile', 'examples/**/*', 'lib/**/*'].to_a
|
36
36
|
gem.test_files = FileList['spec/**/*.rb']
|
37
|
-
gem.
|
37
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
38
38
|
end
|
39
39
|
|
40
40
|
Jeweler::GemcutterTasks.new
|
data/lib/osc-ruby.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
# osc.rb: Written by Tadayoshi Funaba 2005,2006
|
2
2
|
# $Id: osc.rb,v 1.4 2006-11-10 21:54:37+09 tadf Exp $
|
3
|
-
|
4
3
|
require 'forwardable'
|
5
4
|
require 'socket'
|
6
5
|
require 'thread'
|
@@ -16,7 +15,6 @@ require 'osc-ruby/core_ext/time'
|
|
16
15
|
|
17
16
|
# jus the basics
|
18
17
|
require 'osc-ruby/osc_types'
|
19
|
-
require 'osc-ruby/packet'
|
20
18
|
require 'osc-ruby/osc_packet'
|
21
19
|
require 'osc-ruby/message'
|
22
20
|
require 'osc-ruby/bundle'
|
data/spec/spec_helper.rb
CHANGED
@@ -1,13 +1,8 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'spec'
|
3
|
-
require 'rr'
|
4
3
|
|
5
|
-
$:.unshift( File.join( File.dirname( __FILE__), '..'
|
6
|
-
$:.unshift( File.dirname( __FILE__ ) )
|
4
|
+
$:.unshift( File.join( File.dirname( __FILE__), '..') )
|
7
5
|
|
8
|
-
require 'osc-ruby'
|
6
|
+
require 'lib/osc-ruby'
|
9
7
|
require 'builders/message_builder'
|
10
8
|
|
11
|
-
Spec::Runner.configure do |config|
|
12
|
-
config.mock_with RR::Adapters::Rspec
|
13
|
-
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: osc-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- aberant
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-01-16 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -63,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
63
|
version:
|
64
64
|
requirements: []
|
65
65
|
|
66
|
-
rubyforge_project:
|
66
|
+
rubyforge_project:
|
67
67
|
rubygems_version: 1.3.5
|
68
68
|
signing_key:
|
69
69
|
specification_version: 3
|