paulcarey-merb_relaxdb 0.9.9 → 1.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -1,6 +1,6 @@
1
1
  h2. Overview
2
2
 
3
- merb_relaxdb is a merb plugin that provides integration with CouchDB via the RelaxDB gem. Version numbers indicate compatability with Merb. The current version has been tested against merb RC1 (0.9.9).
3
+ merb_relaxdb is a merb plugin that provides integration with CouchDB via the RelaxDB gem. Version numbers indicate compatibility with Merb. Revision numbers are excluded e.g. merb_relaxdb 1.0 should be compatible with Merb 1.0.x
4
4
 
5
5
  The current release includes integration with merb-auth, but this should not yet be considered stable. A sample integration file is included below.
6
6
 
@@ -8,7 +8,7 @@ merb_relaxdb expects your merb app to augment the standard layout as described i
8
8
  couchdb.yml is mandatory. Reference data, sample data and views are optional.
9
9
  merb-gen model my_model will create a sample couchdb.yml.
10
10
 
11
- To use merb_relaxdb, list @dependency "merb_relaxdb", "0.9.9"@ in @config/dependencies.rb@ and @use_orm :relaxdb@ in @config/init.rb@
11
+ To use merb_relaxdb, list @dependency "merb_relaxdb", "1.0"@ in @config/dependencies.rb@ and @use_orm :relaxdb@ in @config/init.rb@
12
12
 
13
13
  For more details on using RelaxDB, see the "RelaxDB wiki":http://github.com/paulcarey/relaxdb/wikis
14
14
  <pre>
@@ -36,7 +36,7 @@ For more details on using RelaxDB, see the "RelaxDB wiki":http://github.com/paul
36
36
  `-- spec
37
37
 
38
38
  </code>
39
- </pre
39
+ </pre>
40
40
 
41
41
  h3. Sample merb/merb-auth/setup.rb
42
42
 
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require 'merb-core/tasks/merb_rake_helper'
4
4
 
5
5
  PLUGIN = "merb_relaxdb"
6
6
  GEM_NAME = "merb_relaxdb"
7
- GEM_VERSION = "0.9.9"
7
+ GEM_VERSION = "1.0"
8
8
  AUTHOR = "Paul Carey"
9
9
  EMAIL = "paul.p.carey@gmail.com"
10
10
  HOMEPAGE = "http://github.com/paulcarey/merb_relaxdb/"
@@ -21,8 +21,7 @@ spec = Gem::Specification.new do |s|
21
21
  s.author = AUTHOR
22
22
  s.email = EMAIL
23
23
  s.homepage = HOMEPAGE
24
- s.add_dependency('merb', '>= 0.9.9')
25
-
24
+
26
25
  # s.add_dependency('relaxdb', '>= 0.1.0') # causes rake install to fail
27
26
  # s.add_dependency('paulcarey-relaxdb', '>= 0.1.0') # allows rake install to succeed
28
27
 
@@ -29,6 +29,9 @@ namespace :relaxdb do
29
29
  require filename
30
30
  end
31
31
  end
32
+
33
+ desc "Create base CouchDB environment from scratch (no sample data)"
34
+ task :basedb => ["relaxdb:db", "relaxdb:views", "relaxdb:data"]
32
35
 
33
36
  task :check_env do
34
37
  unless ENV['MERB_ENV']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paulcarey-merb_relaxdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.9
4
+ version: "1.0"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Carey
@@ -9,17 +9,17 @@ autorequire: merb_relaxdb
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-10-17 00:00:00 -07:00
12
+ date: 2008-11-27 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
- name: merb
16
+ name: merb-core
17
17
  version_requirement:
18
18
  version_requirements: !ruby/object:Gem::Requirement
19
19
  requirements:
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 0.9.9
22
+ version: "1.0"
23
23
  version:
24
24
  description:
25
25
  email: paul.p.carey@gmail.com