fast_osc 0.0.3 → 0.0.4

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
  SHA1:
3
- metadata.gz: 24934bf4851d8faf6a3f60a298f51519118c5865
4
- data.tar.gz: 81d1d5472ae0928587879ffb2ecdee3d265b832f
3
+ metadata.gz: c9a41c6181bc5aacee5d21c72ed458afa8e8ab83
4
+ data.tar.gz: 4826ac56d60fb8361a2b993b770353bd8cea2263
5
5
  SHA512:
6
- metadata.gz: 104becd81c316514e4171614079d7aee8ba4d33c5788cfd82558ac834374d127ae468dd64c188e89ce94416cdbb692d40d2de00b67b7987a24018284cec031de
7
- data.tar.gz: 4eeef0b840558a8a51fcecea56776b734d3e79793421ab13bbce4f75074fe61affc7fe8adbd2b13da6a2b6066cda07b2f350e360402a8e80205077de8c66a110
6
+ metadata.gz: 89e221df978a9ddd6e4652e47e54223cf3080ee398f55768a0d3bf91ef98fb62b4807788e720c2df37d80e872a366a0b5dfe18c2c999a2f8107757d128366add
7
+ data.tar.gz: f1cbc5bd780f52a26d3c78648ccdf7fe7c4dc8c6c053f9703ec62c6ab6dfa73cbc81f51f5e8df27e2e80dc46a283830fd82eab3dc81ab81b6692b5ccfccac1b6
data/.gitignore CHANGED
@@ -15,4 +15,5 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+ lib/fast_osc/*.bundle
18
19
  lib/*.bundle
data/Rakefile CHANGED
@@ -2,4 +2,6 @@ require "bundler/gem_tasks"
2
2
 
3
3
  require 'rake/extensiontask'
4
4
  spec = Gem::Specification.load('fast_osc.gemspec')
5
- Rake::ExtensionTask.new('fast_osc', spec)
5
+ Rake::ExtensionTask.new('fast_osc') do |ext|
6
+ ext.lib_dir = "lib/fast_osc"
7
+ end
@@ -23,6 +23,6 @@ dir_config(extension_name, HEADER_DIRS, LIB_DIRS)
23
23
 
24
24
  $srcs = ["fast_osc_wrapper.c"]
25
25
 
26
- $CFLAGS << " -std=c99 -Wall -Wextra -Wno-unused-parameter"
26
+ $CFLAGS << " -std=c99 -Wall -Wextra -Wno-unused-parameter -pedantic "
27
27
 
28
28
  create_makefile(extension_name)
@@ -1,3 +1,5 @@
1
1
  module FastOsc
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
4
+
5
+ require "fast_osc/fast_osc"
data/lib/fast_osc.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  require "fast_osc/version"
2
- require File.expand_path('../fast_osc.bundle', __FILE__)
3
2
 
4
3
  module FastOsc
5
4
  # Your code goes here...
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_osc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Xavier Riley