README.textile in ripple-0.5.1 vs README.textile in ripple-0.6.0
- old
+ new
@@ -74,19 +74,19 @@
property :to, String, :presence => true
property :sent, Time, :default => proc { Time.now }
property :body, String
end
-email = Email.find("37458abc752f8413e") # GET /raw/emails/37458abc752f8413e
+email = Email.find("37458abc752f8413e") # GET /riak/emails/37458abc752f8413e
email.from = "someone@nowhere.net"
-email.save # PUT /raw/emails/37458abc752f8413e
+email.save # PUT /riak/emails/37458abc752f8413e
reply = Email.new
reply.from = "justin@bashoooo.com"
reply.to = "sean@geeemail.com"
reply.body = "Riak is a good fit for scalable Ruby apps."
-reply.save # POST /raw/emails (Riak-assigned key)
+reply.save # POST /riak/emails (Riak-assigned key)
</pre></notextile>
h2. How to Contribute
* Fork the project on "Github":http://github.com/seancribbs/ripple. If you have already forked, use @git pull --rebase@ to reapply your changes on top of the mainline. Example:
@@ -118,9 +118,11 @@
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-h2. Auxillary License
+h2. Auxillary Licenses
The included photo (spec/fixtures/cat.jpg) is Copyright ©2009 "Sean Cribbs":http://seancribbs.com/, and is
licensed under the "Creative Commons Attribution Non-Commercial 3.0":http://creativecommons.org/licenses/by-nc/3.0 license. !http://i.creativecommons.org/l/by-nc/3.0/88x31.png!
+
+The "Poor Man's Fibers" implementation (lib/riak/util/fiber1.8.rb) is Copyright ©2008 Aman Gupta.