public
Rubygem
Description: StrokeDB plugin for Merb. Allows the use of use_orm :strokedb
Clone URL: git://github.com/elliottcable/merb_strokedb.git
Search Repo:
Move VERSION to the main file, and updated the readme. Gem released!
elliottcable (author)
Sat Apr 19 14:25:27 -0700 2008
commit  38b8625043381f4adc7975cb9a0ab84edbd995cc
tree    56adf7e489fbf05bbe32f1fe7bab50ed4b92cb0a
parent  87814a1228cf5da18a263b69523d9cd84b1e4708
...
10
11
12
 
 
 
 
13
14
15
16
17
...
17
18
19
20
 
21
22
23
24
 
25
26
27
28
29
30
31
...
55
56
57
 
 
 
 
 
 
 
 
 
 
 
 
 
...
10
11
12
13
14
15
16
17
18
19
20
21
...
21
22
23
 
24
25
26
27
 
28
29
 
 
 
30
31
32
...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
0
@@ -10,6 +10,10 @@
0
 Getting
0
 -------
0
 
0
+You can install merb_strokedb using the following command:
0
+
0
+ sudo gem install merb_strokedb
0
+
0
 The authoritative source for this project is available at
0
 <http://github.com/elliottcable/merb_strokedb>. You can clone your own copy with the
0
 following command:
0
0
0
@@ -17,15 +21,12 @@
0
     git clone git://github.com/elliottcable/merb_strokedb.git
0
 
0
 If you want to make changes to the codebase, you need to fork your own github
0
-repository for said changes. Send a pullrequest to [elliottcable][5]
0
+repository for said changes. Send a pullrequest to [elliottcable][GitHub]
0
 when you've got something ready for the master that you think should be
0
 integrated into the root source.
0
 
0
- [5]: <http://github.com/elliottcable> (elliottcable on GitHub)
0
+ [GitHub]: <http://github.com/elliottcable> (elliottcable on GitHub)
0
 
0
-A gem will be available via `gem install` as soon as I am convinced I don't
0
-have any major bugs that will make this unusable. Maybe a week?
0
-
0
 Requirements
0
 ------------
0
 
0
@@ -55,4 +56,17 @@
0
     cd ~/.ruby/merb
0
     sudo sake merb:gems:wipe
0
     sudo sake merb:install
0
+
0
+Licensing
0
+---------
0
+
0
+This software package is currently released under the terms of the
0
+[Creative Commons Attribution-ShareAlike 3.0][1] license (and any later
0
+version, at the discretion of the user). If you wish to use this code in a
0
+project licensed under the GPL, hold on tight! The next version will likely be
0
+dual-licensed under the CC and GNU licenses, to allow exactly that (my
0
+licensing scheme is under review by a lawyer at the moment, I want to ensure
0
+it is air-tight).
0
+
0
+ [1]: <http://creativecommons.org/licenses/by-sa/3.0/> (Creative Commons Attribution-ShareAlike 3.0 license)
...
6
7
8
9
10
11
12
...
6
7
8
 
9
10
11
0
@@ -6,7 +6,6 @@
0
     
0
     module StrokeDB
0
       THREADS = []
0
- VERSION = '1'
0
       
0
       class << self
0
         def config_file() Merb.root / "config" / "store.yml" end
...
1
 
 
 
 
 
 
 
 
2
3
4
...
1
2
3
4
5
6
7
8
9
10
11
12
0
@@ -1,4 +1,12 @@
0
 if defined?(Merb::Plugins)
0
+ module Merb::Orms
0
+
0
+ module StrokeDB
0
+ VERSION = 1
0
+ end
0
+
0
+ end
0
+
0
   require File.join(File.dirname(__FILE__) / :merb / :orms / :strokedb / :connection)
0
   Merb::Plugins.add_rakefiles 'merb_strokedb' / 'strokedb.task'
0
   

Comments

    No one has commented yet.