oqgraph_rails 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +8 -0
- data/Gemfile +6 -1
- data/Gemfile.lock +3 -1
- data/README.md +4 -0
- data/Rakefile +2 -0
- data/lib/oqgraph_rails/version.rb +1 -1
- data/oqgraph_rails-0.1.0.gem +0 -0
- metadata +10 -8
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
oqgraph_rails (0.0
|
4
|
+
oqgraph_rails (0.1.0)
|
5
5
|
activerecord
|
6
6
|
minitest
|
7
7
|
mysql2
|
@@ -26,6 +26,7 @@ GEM
|
|
26
26
|
minitest (3.1.0)
|
27
27
|
multi_json (1.3.6)
|
28
28
|
mysql2 (0.3.11)
|
29
|
+
rake (0.9.2.2)
|
29
30
|
tzinfo (0.3.33)
|
30
31
|
|
31
32
|
PLATFORMS
|
@@ -33,3 +34,4 @@ PLATFORMS
|
|
33
34
|
|
34
35
|
DEPENDENCIES
|
35
36
|
oqgraph_rails!
|
37
|
+
rake
|
data/README.md
CHANGED
@@ -238,6 +238,10 @@ by using the --init-file=<SQLfile> option in my.cnf with the appropriate SQL in
|
|
238
238
|
I've encountered a bug where the oqgraph table occasionally needs to be dropped and rebuilt. It's being tracked down.
|
239
239
|
If you are not getting any results from the oqgraph table try dropping it and restarting the app.
|
240
240
|
|
241
|
+
The OQGraph migration sets the database engine to OQGRAPH, the mysql active record adapter always defaults the
|
242
|
+
engine to INNODB, this means that while the migration to create the table works, creating the table using
|
243
|
+
the schema will not set the correct database engine.
|
244
|
+
|
241
245
|
I'm working on a way to tell if the oqgraph table is stale other than by the current count of rows. Suggestions would be welcome.
|
242
246
|
|
243
247
|
Copyright (c) 2010 - 2012 Stuart Coyle, released under the MIT license
|
data/Rakefile
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oqgraph_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,12 +9,12 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-08-01 00:00:00.000000000 +10:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: mysql2
|
17
|
-
requirement: &
|
17
|
+
requirement: &2152162120 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: '0'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *2152162120
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: activerecord
|
28
|
-
requirement: &
|
28
|
+
requirement: &2160557140 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ! '>='
|
@@ -33,10 +33,10 @@ dependencies:
|
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *2160557140
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: minitest
|
39
|
-
requirement: &
|
39
|
+
requirement: &2160882940 !ruby/object:Gem::Requirement
|
40
40
|
none: false
|
41
41
|
requirements:
|
42
42
|
- - ! '>='
|
@@ -44,7 +44,7 @@ dependencies:
|
|
44
44
|
version: '0'
|
45
45
|
type: :runtime
|
46
46
|
prerelease: false
|
47
|
-
version_requirements: *
|
47
|
+
version_requirements: *2160882940
|
48
48
|
description: Graph engine interface for active record.
|
49
49
|
email:
|
50
50
|
- stuart.coyle@gmail.com
|
@@ -52,6 +52,7 @@ executables: []
|
|
52
52
|
extensions: []
|
53
53
|
extra_rdoc_files: []
|
54
54
|
files:
|
55
|
+
- .travis.yml
|
55
56
|
- AUTHORS
|
56
57
|
- Gemfile
|
57
58
|
- Gemfile.lock
|
@@ -69,6 +70,7 @@ files:
|
|
69
70
|
- lib/oqgraph/node.rb
|
70
71
|
- lib/oqgraph_rails.rb
|
71
72
|
- lib/oqgraph_rails/version.rb
|
73
|
+
- oqgraph_rails-0.1.0.gem
|
72
74
|
- oqgraph_rails.gemspec
|
73
75
|
- test/graph_edge_test.rb
|
74
76
|
- test/graph_node_test.rb
|