motion-sqlite3 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rvmrc +4 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +74 -0
- data/Guardfile +9 -0
- data/README.md +56 -0
- data/Rakefile +21 -0
- data/app/app_delegate.rb +5 -0
- data/lib/motion-sqlite3.rb +16 -0
- data/lib/motion-sqlite3/database.rb +62 -0
- data/lib/motion-sqlite3/error.rb +4 -0
- data/lib/motion-sqlite3/result_set.rb +57 -0
- data/lib/motion-sqlite3/statement.rb +86 -0
- data/lib/motion-sqlite3/version.rb +3 -0
- data/motion-sqlite3.gemspec +19 -0
- data/spec/database_spec.rb +66 -0
- data/vendor/sqlite3/dummy.m +0 -0
- data/vendor/sqlite3/sqlite3.bridgesupport +2049 -0
- data/vendor/sqlite3/sqlite3.h +7029 -0
- metadata +78 -0
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: motion-sqlite3
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Matt Green
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-01-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.9.0
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.9.0
|
27
|
+
description: A minimal wrapper over the SQLite 3 C API for RubyMotion
|
28
|
+
email:
|
29
|
+
- mattgreenrocks@gmail.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- ".gitignore"
|
35
|
+
- ".rvmrc"
|
36
|
+
- Gemfile
|
37
|
+
- Gemfile.lock
|
38
|
+
- Guardfile
|
39
|
+
- README.md
|
40
|
+
- Rakefile
|
41
|
+
- app/app_delegate.rb
|
42
|
+
- lib/motion-sqlite3.rb
|
43
|
+
- lib/motion-sqlite3/database.rb
|
44
|
+
- lib/motion-sqlite3/error.rb
|
45
|
+
- lib/motion-sqlite3/result_set.rb
|
46
|
+
- lib/motion-sqlite3/statement.rb
|
47
|
+
- lib/motion-sqlite3/version.rb
|
48
|
+
- motion-sqlite3.gemspec
|
49
|
+
- spec/database_spec.rb
|
50
|
+
- vendor/sqlite3/dummy.m
|
51
|
+
- vendor/sqlite3/sqlite3.bridgesupport
|
52
|
+
- vendor/sqlite3/sqlite3.h
|
53
|
+
homepage: http://github.com/mattgreen/motion-sqlite3
|
54
|
+
licenses:
|
55
|
+
- MIT
|
56
|
+
metadata: {}
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options: []
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '0'
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
requirements: []
|
72
|
+
rubyforge_project:
|
73
|
+
rubygems_version: 2.2.0
|
74
|
+
signing_key:
|
75
|
+
specification_version: 4
|
76
|
+
summary: A minimal wrapper over the SQLite 3 C API for RubyMotion
|
77
|
+
test_files:
|
78
|
+
- spec/database_spec.rb
|