Hi!

I'd like to introduce my project called Garfa: 
https://github.com/splix/garfa

Garfa is a Active Record for Groovy on Appengine, it extends your Groovy 
classes with methods for querying, storing and updating models for 
Appengine database.

Basically it allows you to write code like:
CarModel mustang = new CarModel(vendor: 'Ford', model: 'Mustang', year: 2012
)
mustang.save()
Car redMustang = new Car(model: mustang.key, price: 22000, color: 'red')
redMustang.save()

Car blackMustang = Car.findFirstByModelAndColor(mustang.key, 'black')


It's a tiny wrapper around Objectify 3.1, and should work with any Groovy 
project for Appengine. The project is in early stage of development, but 
it's pretty safe to use Garfa in your project, because all underlying work 
is done by well-tested Objectify, and if you have something very specific 
you could always dig down to Objectify.

GitHub: https://github.com/splix/garfa
Documentation: http://splix.github.io/garfa/
License: Apache 2.0

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to