sqlite3-ironruby 0.1.0

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/test/tests.rb ADDED
@@ -0,0 +1,5 @@
1
+ Dir.chdir File.dirname( __FILE__ )
2
+ $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
3
+ p $LOAD_PATH
4
+
5
+ Dir["**/tc_*.rb"].each { |file| load file }
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sqlite3-ironruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - James Thompson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-10-17 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: james@plainprograms.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README.rdoc
24
+ files:
25
+ - lib/sqlite3/constants.rb
26
+ - lib/sqlite3/database.rb
27
+ - lib/sqlite3/driver/native/Community.Data.SQLite.dll
28
+ - lib/sqlite3/driver/native/driver.rb
29
+ - lib/sqlite3/errors.rb
30
+ - lib/sqlite3/pragmas.rb
31
+ - lib/sqlite3/resultset.rb
32
+ - lib/sqlite3/statement.rb
33
+ - lib/sqlite3/translator.rb
34
+ - lib/sqlite3/value.rb
35
+ - lib/sqlite3/version.rb
36
+ - lib/sqlite3.rb
37
+ - test/bm.rb
38
+ - test/mocks.rb
39
+ - test/native-vs-dl.rb
40
+ - test/tc_database.rb
41
+ - test/tc_errors.rb
42
+ - test/tc_integration.rb
43
+ - test/tests.rb
44
+ - README.rdoc
45
+ has_rdoc: true
46
+ homepage: http://github.com/jwthompson2/sqlite3-ironruby
47
+ licenses: []
48
+
49
+ post_install_message:
50
+ rdoc_options:
51
+ - --main
52
+ - README.rdoc
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: 1.8.0
60
+ version:
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: "0"
66
+ version:
67
+ requirements: []
68
+
69
+ rubyforge_project:
70
+ rubygems_version: 1.3.5
71
+ signing_key:
72
+ specification_version: 3
73
+ summary: SQLite3/IronRuby is a module to allow Ruby scripts running on the IronRuby interpreter to interface with a SQLite3 database.
74
+ test_files:
75
+ - test/tests.rb