├── .document ├── .gitignore ├── LICENSE ├── README.rdoc ├── Rakefile ├── lib └── sinatra │ └── mongo.rb ├── sinatra-mongo.gemspec └── spec ├── fixtures ├── classic_app.rb └── modular_app.rb ├── sinatra-mongo_classic_style_spec.rb ├── sinatra-mongo_modular_style_spec.rb ├── sinatra-mongo_spec.rb ├── spec.opts ├── spec_helper.rb └── support ├── rack_test.rb └── shared_examples.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/sinatra/mongo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/lib/sinatra/mongo.rb -------------------------------------------------------------------------------- /sinatra-mongo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/sinatra-mongo.gemspec -------------------------------------------------------------------------------- /spec/fixtures/classic_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/spec/fixtures/classic_app.rb -------------------------------------------------------------------------------- /spec/fixtures/modular_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/spec/fixtures/modular_app.rb -------------------------------------------------------------------------------- /spec/sinatra-mongo_classic_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/spec/sinatra-mongo_classic_style_spec.rb -------------------------------------------------------------------------------- /spec/sinatra-mongo_modular_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/spec/sinatra-mongo_modular_style_spec.rb -------------------------------------------------------------------------------- /spec/sinatra-mongo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/spec/sinatra-mongo_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/rack_test.rb: -------------------------------------------------------------------------------- 1 | require 'rack/test' 2 | -------------------------------------------------------------------------------- /spec/support/shared_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/sinatra-mongo/HEAD/spec/support/shared_examples.rb --------------------------------------------------------------------------------