├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── mongery.rb └── mongery │ ├── schema.rb │ └── version.rb ├── mongery.gemspec └── spec ├── mongery ├── builder_schema_spec.rb ├── builder_spec.rb └── mapped_properties_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /lib/mongery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/lib/mongery.rb -------------------------------------------------------------------------------- /lib/mongery/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/lib/mongery/schema.rb -------------------------------------------------------------------------------- /lib/mongery/version.rb: -------------------------------------------------------------------------------- 1 | module Mongery 2 | VERSION = "1.0.5" 3 | end 4 | -------------------------------------------------------------------------------- /mongery.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/mongery.gemspec -------------------------------------------------------------------------------- /spec/mongery/builder_schema_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/spec/mongery/builder_schema_spec.rb -------------------------------------------------------------------------------- /spec/mongery/builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/spec/mongery/builder_spec.rb -------------------------------------------------------------------------------- /spec/mongery/mapped_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/spec/mongery/mapped_properties_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/mongery/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------