forked from couchrest/couchrest_model
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed classes from couchrest to couchbase
- Loading branch information
Showing
87 changed files
with
405 additions
and
390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>couchbase_model</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>com.aptana.ide.core.unifiedBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>com.aptana.ruby.core.rubynature</nature> | ||
<nature>com.aptana.projects.webnature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ CouchRest THANKS | |
|
||
CouchRest was originally developed by J. Chris Anderson <[email protected]> | ||
and a number of other contributors. Many people further contributed to | ||
CouchRest by reporting problems, suggesting various improvements or submitting | ||
CouchBase by reporting problems, suggesting various improvements or submitting | ||
changes. A list of these people is included below. | ||
|
||
* [Matt Aimonetti](http://merbist.com/about/) | ||
|
@@ -16,6 +16,6 @@ changes. A list of these people is included below. | |
* [Sam Lown](http://github.com/samlown) | ||
* [Will Leinweber](http://github.com/will) | ||
|
||
Patches are welcome. The primary source for this software project is [on Github](http://github.com/couchrest/couchrest) | ||
Patches are welcome. The primary source for this software project is [on Github](http://github.com/jethar/couchbase_model) | ||
|
||
A lot of people have active forks - thank you all - even the patches I don't end up using are helpful. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.1.2 | ||
0.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
# -*- encoding: utf-8 -*- | ||
|
||
Gem::Specification.new do |s| | ||
s.name = %q{couchrest_model} | ||
s.name = %q{couchbase_model} | ||
s.version = `cat VERSION`.strip | ||
|
||
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["J. Chris Anderson", "Matt Aimonetti", "Marcos Tapajos", "Will Leinweber", "Sam Lown"] | ||
s.date = File.mtime('VERSION') | ||
s.description = %q{CouchRest Model provides aditional features to the standard CouchRest Document class such as properties, view designs, associations, callbacks, typecasting and validations.} | ||
s.description = %q{CouchBase Model provides aditional features to the standard CouchBase Document class such as properties, view designs, associations, callbacks, typecasting and validations.} | ||
s.email = %q{[email protected]} | ||
s.extra_rdoc_files = [ | ||
"LICENSE", | ||
"README.md", | ||
"THANKS.md" | ||
] | ||
s.homepage = %q{http://github.com/couchrest/couchrest_model} | ||
s.homepage = %q{http://github.com/couchbase/couchbase_model} | ||
s.rubygems_version = %q{1.3.7} | ||
s.summary = %q{Extends the CouchRest Document for advanced modelling.} | ||
s.summary = %q{Extends the CouchBase Document for advanced modelling.} | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ["lib"] | ||
|
||
s.add_dependency(%q<couchrest>, "~> 1.1.2") | ||
s.add_dependency(%q<couchbase>, "~> 1.1.2") | ||
s.add_dependency(%q<mime-types>, "~> 1.15") | ||
s.add_dependency(%q<activemodel>, "~> 3.0") | ||
s.add_dependency(%q<tzinfo>, "~> 0.3.22") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
require File.join(File.dirname(__FILE__),'lib', 'couchrest', 'model') | ||
require File.join(File.dirname(__FILE__),'lib', 'couchbase', 'model') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
module CouchRest | ||
module CouchBase | ||
|
||
module Model | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# encoding: utf-8 | ||
|
||
module CouchRest #:nodoc: | ||
module CouchBase #:nodoc: | ||
module Model #:nodoc: | ||
|
||
module Callbacks | ||
|
Oops, something went wrong.