• Stars
    star
    110
  • Rank 316,770 (Top 7 %)
  • Language
    Clojure
  • Created over 15 years ago
  • Updated almost 15 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Clojure library to make life on Google AppEngine clean and easy

appengine-clj

Library aimed at making life on Google AppEngine clean and easy for a Clojure app.

appengine-clj.users

Convenience API for the com.google.appengine.api.users package.

The user-info function can be called from anywhere to get the current user and a UserService.
For a more functional approach, a Ring middlware function is provided
to assoc the user info into every request under the key :appengine-clj/user-info.

appengine-clj.datastore

A convenience API for the com.google.appengine.api.datastore package providing access to Google’s schema-free datastore.

It allows you to work with immutable data structures instead of mutable Entity instances.

(require '[appengine-clj.datastore :as ds])
(ds/create {:kind "Person" :name "Jimmmy" :age 25})
=> {:kind "Person" :key #<Key Person(1138)> :name "Jimmmy" :age 25}

appengine-clj.test-utils

Provides setup and teardown of an in-memory Datastore for use in tests or from a REPL.
If you’re using clojure.contrib.test-is, you can use the dstest macro to get a fresh Datastore for each test.


Copyright © 2009 John D. Hume.

Released under an MIT license.

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the “Software”), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

clj-record

DEPRECATED: A pseudo-port of ActiveRecord to the Clojure programming language
Clojure
164
star
2

FluentTime

A fluent interface in C# for working with dates and times on the .NET framework
C#
85
star
3

renum

a readable but terse enum for Ruby
Ruby
26
star
4

guestbook-clj

Tutorial app for Clojure on Google AppEngine
Clojure
21
star
5

metaprogramming_introduction

An article introducing Ruby metaprogramming fundamentals, in source code form.
Ruby
17
star
6

SimURLator

A tool for in-Simulator manual testing of iPhone apps that openURL: or handleOpenURL:
Objective-C
13
star
7

macro-madness

Presentation on Clojure Macros
Clojure
11
star
8

todo-backend-rust-iron

Rust impl of todo-backend. Not publicly hosted yet.
Rust
10
star
9

insfactor

Tool to ease inspection and refactoring of clojure code
Clojure
10
star
10

life-of-a-clojure-expression

A deep but skinny slice of Clojure innards. (presentation)
Clojure
6
star
11

constantize_attribute

Gives ActiveRecord a constantize_attribute macro allowing attribute values to be Class and Module objects, among other things
Ruby
5
star
12

ring-request-logging

Ring middleware to log requests and responses
Clojure
5
star
13

datomic-schema

convenient Clojure fns for building up a datomic schema
Clojure
3
star
14

actionhelper

A Rails plugin for mixing action-specific helper modules into your view
Ruby
2
star
15

simple_app

Simplest possible Rails 2.3.11 app for deployment spike testing.
Ruby
1
star
16

away_day_RapidFTR

1
star
17

rust-study

Sandbox for playing w/ rust-lang.
Rust
1
star
18

insfactor.el

Emacs component of insfactor
Emacs Lisp
1
star