├── .gitignore ├── .rspec ├── Appraisals ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── where_row.rb └── where_row │ ├── active_record.rb │ ├── active_record │ ├── base.rb │ └── relation.rb │ ├── query_builder.rb │ ├── query_builder_fascade.rb │ └── version.rb ├── spec ├── spec_helper.rb └── where_row_spec.rb └── where_row.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/Appraisals -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/where_row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/lib/where_row.rb -------------------------------------------------------------------------------- /lib/where_row/active_record.rb: -------------------------------------------------------------------------------- 1 | module WhereRow::ActiveRecord; end 2 | -------------------------------------------------------------------------------- /lib/where_row/active_record/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/lib/where_row/active_record/base.rb -------------------------------------------------------------------------------- /lib/where_row/active_record/relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/lib/where_row/active_record/relation.rb -------------------------------------------------------------------------------- /lib/where_row/query_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/lib/where_row/query_builder.rb -------------------------------------------------------------------------------- /lib/where_row/query_builder_fascade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/lib/where_row/query_builder_fascade.rb -------------------------------------------------------------------------------- /lib/where_row/version.rb: -------------------------------------------------------------------------------- 1 | module WhereRow 2 | VERSION = "0.1.3" 3 | end 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/where_row_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/spec/where_row_spec.rb -------------------------------------------------------------------------------- /where_row.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odydoum/where_row/HEAD/where_row.gemspec --------------------------------------------------------------------------------