├── .coveralls.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── detectify.gemspec ├── lib ├── detectify.rb ├── detectify │ ├── config.rb │ ├── detector.rb │ ├── middleware.rb │ ├── query_builder │ │ ├── base.rb │ │ └── sql.rb │ ├── railtie.rb │ └── version.rb └── generators │ └── detectify │ ├── install_generator.rb │ └── templates │ └── detectify.rb └── spec ├── detectify ├── config_spec.rb ├── detectify_spec.rb ├── detector_spec.rb ├── middleware_spec.rb └── query_builder │ ├── base_spec.rb │ └── sql_spec.rb └── spec_helper.rb /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format Fuubar 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/Rakefile -------------------------------------------------------------------------------- /detectify.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/detectify.gemspec -------------------------------------------------------------------------------- /lib/detectify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/lib/detectify.rb -------------------------------------------------------------------------------- /lib/detectify/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/lib/detectify/config.rb -------------------------------------------------------------------------------- /lib/detectify/detector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/lib/detectify/detector.rb -------------------------------------------------------------------------------- /lib/detectify/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/lib/detectify/middleware.rb -------------------------------------------------------------------------------- /lib/detectify/query_builder/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/lib/detectify/query_builder/base.rb -------------------------------------------------------------------------------- /lib/detectify/query_builder/sql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/lib/detectify/query_builder/sql.rb -------------------------------------------------------------------------------- /lib/detectify/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/lib/detectify/railtie.rb -------------------------------------------------------------------------------- /lib/detectify/version.rb: -------------------------------------------------------------------------------- 1 | module Detectify 2 | VERSION = '1.0.5'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/generators/detectify/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/lib/generators/detectify/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/detectify/templates/detectify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/lib/generators/detectify/templates/detectify.rb -------------------------------------------------------------------------------- /spec/detectify/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/spec/detectify/config_spec.rb -------------------------------------------------------------------------------- /spec/detectify/detectify_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/spec/detectify/detectify_spec.rb -------------------------------------------------------------------------------- /spec/detectify/detector_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/spec/detectify/detector_spec.rb -------------------------------------------------------------------------------- /spec/detectify/middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/spec/detectify/middleware_spec.rb -------------------------------------------------------------------------------- /spec/detectify/query_builder/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/spec/detectify/query_builder/base_spec.rb -------------------------------------------------------------------------------- /spec/detectify/query_builder/sql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/spec/detectify/query_builder/sql_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygarage/detectify/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------