├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── rubocop.yml ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── err_now.png ├── err_was.png ├── lib ├── generators │ ├── niceql │ │ └── install_generator.rb │ └── templates │ │ └── niceql_initializer.rb ├── niceql.rb └── niceql │ └── version.rb ├── niceql.gemspec ├── test ├── niceql │ ├── declarative.rb │ └── niceql_test.rb └── test_helper.rb └── to_niceql.png /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/.github/workflows/rubocop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/bin/setup -------------------------------------------------------------------------------- /err_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/err_now.png -------------------------------------------------------------------------------- /err_was.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/err_was.png -------------------------------------------------------------------------------- /lib/generators/niceql/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/lib/generators/niceql/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/templates/niceql_initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/lib/generators/templates/niceql_initializer.rb -------------------------------------------------------------------------------- /lib/niceql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/lib/niceql.rb -------------------------------------------------------------------------------- /lib/niceql/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Niceql 4 | VERSION = "0.6.2" 5 | end 6 | -------------------------------------------------------------------------------- /niceql.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/niceql.gemspec -------------------------------------------------------------------------------- /test/niceql/declarative.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/test/niceql/declarative.rb -------------------------------------------------------------------------------- /test/niceql/niceql_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/test/niceql/niceql_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /to_niceql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekseyl/niceql/HEAD/to_niceql.png --------------------------------------------------------------------------------