├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── gemfiles ├── rails_4.2.gemfile ├── rails_5.0.gemfile ├── rails_5.1.gemfile ├── rails_5.2.gemfile └── rails_6.0.gemfile ├── hashid-rails.gemspec ├── lib └── hashid │ ├── rails.rb │ └── rails │ ├── configuration.rb │ └── version.rb └── spec ├── hashid ├── rails │ └── version_spec.rb └── rails_spec.rb ├── spec_helper.rb └── support ├── comment.rb ├── fake_model.rb ├── post.rb └── schema.rb /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/bin/setup -------------------------------------------------------------------------------- /gemfiles/rails_4.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/gemfiles/rails_4.2.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_5.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/gemfiles/rails_5.0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_5.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/gemfiles/rails_5.1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_5.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/gemfiles/rails_5.2.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_6.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/gemfiles/rails_6.0.gemfile -------------------------------------------------------------------------------- /hashid-rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/hashid-rails.gemspec -------------------------------------------------------------------------------- /lib/hashid/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/lib/hashid/rails.rb -------------------------------------------------------------------------------- /lib/hashid/rails/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/lib/hashid/rails/configuration.rb -------------------------------------------------------------------------------- /lib/hashid/rails/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/lib/hashid/rails/version.rb -------------------------------------------------------------------------------- /spec/hashid/rails/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/spec/hashid/rails/version_spec.rb -------------------------------------------------------------------------------- /spec/hashid/rails_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/spec/hashid/rails_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/spec/support/comment.rb -------------------------------------------------------------------------------- /spec/support/fake_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/spec/support/fake_model.rb -------------------------------------------------------------------------------- /spec/support/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/spec/support/post.rb -------------------------------------------------------------------------------- /spec/support/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcypret/hashid-rails/HEAD/spec/support/schema.rb --------------------------------------------------------------------------------