Initial commit
parents
Showing
.gitignore
0 → 100644
Gemfile
0 → 100644
| source 'https://rubygems.org' | |||
| # Specify your gem's dependencies in ransack_mongo.gemspec | |||
| gemspec |
LICENSE.txt
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
lib/ransack_mongo.rb
0 → 100644
lib/ransack_mongo/mongo_adapter.rb
0 → 100644
lib/ransack_mongo/predicate.rb
0 → 100644
lib/ransack_mongo/query.rb
0 → 100644
lib/ransack_mongo/version.rb
0 → 100644
ransack_mongo.gemspec
0 → 100644
| # coding: utf-8 | |||
| lib = File.expand_path('../lib', __FILE__) | |||
| $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |||
| require 'ransack_mongo/version' | |||
| Gem::Specification.new do |spec| | |||
| spec.name = 'ransack_mongo' | |||
| spec.version = RansackMongo::VERSION | |||
| spec.authors = ['Pablo Cantero'] | |||
| spec.email = ['pablo@pablocantero.com'] | |||
| spec.homepage = 'https://github.com/phstc/ransack_mongo' | |||
| spec.summary = %q{Object-based searching for MongoDB (currently).} | |||
| spec.description = %q{Ransack Mongo is inspired/based on Ransack but for MongoDB} | |||
| spec.homepage = '' | |||
| spec.license = 'MIT' | |||
| spec.files = `git ls-files`.split($/) | |||
| spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | |||
| spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | |||
| spec.require_paths = ['lib'] | |||
| spec.add_development_dependency 'bundler' | |||
| spec.add_development_dependency 'rake' | |||
| spec.add_development_dependency 'rspec' | |||
| end |
spec/ransack_mongo/mongo_adapter_spec.rb
0 → 100644
spec/ransack_mongo/predicate_spec.rb
0 → 100644
spec/ransack_mongo/query_spec.rb
0 → 100644
spec/spec_helper.rb
0 → 100644
Please
register
or
sign in
to comment