darvin_functions 0.0.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/ext/darvin_functions.bundle +0 -0
- data/ext/extconf.rb +12 -0
- metadata +75 -0
|
Binary file
|
data/ext/extconf.rb
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Loads mkmf which is used to make makefiles for Ruby extensions
|
|
2
|
+
require 'mkmf'
|
|
3
|
+
|
|
4
|
+
# Give it a name
|
|
5
|
+
extension_name = 'darvin_functions'
|
|
6
|
+
|
|
7
|
+
dir_config("darvin_functions")
|
|
8
|
+
|
|
9
|
+
# NOTE: use GCC flags unless Visual C compiler is used
|
|
10
|
+
$CFLAGS << ' -Wall ' unless RUBY_PLATFORM =~ /mswin/
|
|
11
|
+
|
|
12
|
+
create_makefile 'darvin_functions'
|
metadata
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: darvin_functions
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 0
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.0.1
|
|
10
|
+
platform: ruby
|
|
11
|
+
authors:
|
|
12
|
+
- Darvin Bauer
|
|
13
|
+
- Matt Bauer
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2010-08-09 00:00:00 -05:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: shoulda
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
segments:
|
|
29
|
+
- 0
|
|
30
|
+
version: "0"
|
|
31
|
+
type: :development
|
|
32
|
+
version_requirements: *id001
|
|
33
|
+
description: Various functions for data processing, clean up and analysis
|
|
34
|
+
email: info@pedalbrain.com
|
|
35
|
+
executables: []
|
|
36
|
+
|
|
37
|
+
extensions:
|
|
38
|
+
- ext/extconf.rb
|
|
39
|
+
extra_rdoc_files: []
|
|
40
|
+
|
|
41
|
+
files:
|
|
42
|
+
- ext/darvin_functions.bundle
|
|
43
|
+
- ext/extconf.rb
|
|
44
|
+
has_rdoc: true
|
|
45
|
+
homepage: http://github.com/pedalbrain/darvin_functions
|
|
46
|
+
licenses: []
|
|
47
|
+
|
|
48
|
+
post_install_message:
|
|
49
|
+
rdoc_options:
|
|
50
|
+
- --charset=UTF-8
|
|
51
|
+
require_paths:
|
|
52
|
+
- lib
|
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
54
|
+
requirements:
|
|
55
|
+
- - ">="
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
segments:
|
|
58
|
+
- 0
|
|
59
|
+
version: "0"
|
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
|
+
requirements:
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
segments:
|
|
65
|
+
- 0
|
|
66
|
+
version: "0"
|
|
67
|
+
requirements: []
|
|
68
|
+
|
|
69
|
+
rubyforge_project:
|
|
70
|
+
rubygems_version: 1.3.6
|
|
71
|
+
signing_key:
|
|
72
|
+
specification_version: 3
|
|
73
|
+
summary: Various functions for data processing, clean up and analysis
|
|
74
|
+
test_files: []
|
|
75
|
+
|