├── .gitignore ├── LICENSE ├── Manifest ├── README ├── Rakefile ├── ambition.gemspec ├── app_generators └── ambition_adapter │ ├── USAGE │ ├── ambition_adapter_generator.rb │ └── templates │ ├── LICENSE │ ├── README │ ├── Rakefile │ ├── lib │ ├── adapter │ │ ├── base.rb.erb │ │ ├── query.rb.erb │ │ ├── select.rb.erb │ │ ├── slice.rb.erb │ │ └── sort.rb.erb │ └── init.rb.erb │ └── test │ ├── helper.rb.erb │ ├── select_test.rb.erb │ ├── slice_test.rb.erb │ └── sort_test.rb.erb ├── bin └── ambition_adapter ├── deps.rip ├── lib ├── ambition.rb └── ambition │ ├── api.rb │ ├── context.rb │ ├── core_ext.rb │ ├── enumerable.rb │ ├── processors │ ├── base.rb │ ├── ruby.rb │ ├── select.rb │ ├── slice.rb │ └── sort.rb │ └── sexp_translator.rb ├── site ├── Rakefile └── src │ ├── _adapters.textile │ ├── adapters.textile │ ├── adapters │ └── activerecord.textile │ ├── api.textile │ ├── index.textile │ ├── layout.textile │ └── static │ ├── bg.png │ ├── code_highlighter.js │ ├── css.js │ ├── html.js │ ├── hubris.css │ ├── javascript.js │ └── ruby.js └── test ├── adapters └── exemplar │ ├── association_test.rb │ ├── count_test.rb │ ├── detect_test.rb │ ├── enumerable_test.rb │ ├── helper.rb │ ├── index_operator.rb │ ├── reject_test.rb │ ├── select_test.rb │ ├── slice_test.rb │ └── sort_test.rb ├── debug └── helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | live 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/LICENSE -------------------------------------------------------------------------------- /Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/Manifest -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/Rakefile -------------------------------------------------------------------------------- /ambition.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/ambition.gemspec -------------------------------------------------------------------------------- /app_generators/ambition_adapter/USAGE: -------------------------------------------------------------------------------- 1 | o. 2 | -------------------------------------------------------------------------------- /app_generators/ambition_adapter/ambition_adapter_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/ambition_adapter_generator.rb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/LICENSE -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/README -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/Rakefile -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/lib/adapter/base.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/lib/adapter/base.rb.erb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/lib/adapter/query.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/lib/adapter/query.rb.erb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/lib/adapter/select.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/lib/adapter/select.rb.erb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/lib/adapter/slice.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/lib/adapter/slice.rb.erb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/lib/adapter/sort.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/lib/adapter/sort.rb.erb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/lib/init.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/lib/init.rb.erb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/test/helper.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/test/helper.rb.erb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/test/select_test.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/test/select_test.rb.erb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/test/slice_test.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/test/slice_test.rb.erb -------------------------------------------------------------------------------- /app_generators/ambition_adapter/templates/test/sort_test.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/app_generators/ambition_adapter/templates/test/sort_test.rb.erb -------------------------------------------------------------------------------- /bin/ambition_adapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/bin/ambition_adapter -------------------------------------------------------------------------------- /deps.rip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/deps.rip -------------------------------------------------------------------------------- /lib/ambition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition.rb -------------------------------------------------------------------------------- /lib/ambition/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/api.rb -------------------------------------------------------------------------------- /lib/ambition/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/context.rb -------------------------------------------------------------------------------- /lib/ambition/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/core_ext.rb -------------------------------------------------------------------------------- /lib/ambition/enumerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/enumerable.rb -------------------------------------------------------------------------------- /lib/ambition/processors/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/processors/base.rb -------------------------------------------------------------------------------- /lib/ambition/processors/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/processors/ruby.rb -------------------------------------------------------------------------------- /lib/ambition/processors/select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/processors/select.rb -------------------------------------------------------------------------------- /lib/ambition/processors/slice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/processors/slice.rb -------------------------------------------------------------------------------- /lib/ambition/processors/sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/processors/sort.rb -------------------------------------------------------------------------------- /lib/ambition/sexp_translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/lib/ambition/sexp_translator.rb -------------------------------------------------------------------------------- /site/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/Rakefile -------------------------------------------------------------------------------- /site/src/_adapters.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/_adapters.textile -------------------------------------------------------------------------------- /site/src/adapters.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/adapters.textile -------------------------------------------------------------------------------- /site/src/adapters/activerecord.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/adapters/activerecord.textile -------------------------------------------------------------------------------- /site/src/api.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/api.textile -------------------------------------------------------------------------------- /site/src/index.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/index.textile -------------------------------------------------------------------------------- /site/src/layout.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/layout.textile -------------------------------------------------------------------------------- /site/src/static/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/static/bg.png -------------------------------------------------------------------------------- /site/src/static/code_highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/static/code_highlighter.js -------------------------------------------------------------------------------- /site/src/static/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/static/css.js -------------------------------------------------------------------------------- /site/src/static/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/static/html.js -------------------------------------------------------------------------------- /site/src/static/hubris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/static/hubris.css -------------------------------------------------------------------------------- /site/src/static/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/static/javascript.js -------------------------------------------------------------------------------- /site/src/static/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/site/src/static/ruby.js -------------------------------------------------------------------------------- /test/adapters/exemplar/association_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/test/adapters/exemplar/association_test.rb -------------------------------------------------------------------------------- /test/adapters/exemplar/count_test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/adapters/exemplar/detect_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/test/adapters/exemplar/detect_test.rb -------------------------------------------------------------------------------- /test/adapters/exemplar/enumerable_test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/adapters/exemplar/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/test/adapters/exemplar/helper.rb -------------------------------------------------------------------------------- /test/adapters/exemplar/index_operator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/test/adapters/exemplar/index_operator.rb -------------------------------------------------------------------------------- /test/adapters/exemplar/reject_test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/adapters/exemplar/select_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/test/adapters/exemplar/select_test.rb -------------------------------------------------------------------------------- /test/adapters/exemplar/slice_test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/adapters/exemplar/sort_test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/test/debug -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/ambition/HEAD/test/helper.rb --------------------------------------------------------------------------------