├── .github └── workflows │ └── test.yml ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── gemfiles ├── activerecord_5_0.gemfile ├── activerecord_5_1.gemfile ├── activerecord_5_2.gemfile └── activerecord_6_0.gemfile ├── lib ├── shibaraku.rb └── shibaraku │ ├── active_record_ext.rb │ └── version.rb ├── shibaraku.gemspec └── spec ├── active_hash_spec.rb ├── active_record_ext_spec.rb ├── database.yml.ci ├── database.yml.sample ├── shibaraku_spec.rb ├── spec_helper.rb └── support └── create_test_database.rb /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/bin/setup -------------------------------------------------------------------------------- /gemfiles/activerecord_5_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/gemfiles/activerecord_5_0.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_5_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/gemfiles/activerecord_5_1.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_5_2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/gemfiles/activerecord_5_2.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_6_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/gemfiles/activerecord_6_0.gemfile -------------------------------------------------------------------------------- /lib/shibaraku.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/lib/shibaraku.rb -------------------------------------------------------------------------------- /lib/shibaraku/active_record_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/lib/shibaraku/active_record_ext.rb -------------------------------------------------------------------------------- /lib/shibaraku/version.rb: -------------------------------------------------------------------------------- 1 | module Shibaraku 2 | VERSION = "2.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /shibaraku.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/shibaraku.gemspec -------------------------------------------------------------------------------- /spec/active_hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/spec/active_hash_spec.rb -------------------------------------------------------------------------------- /spec/active_record_ext_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/spec/active_record_ext_spec.rb -------------------------------------------------------------------------------- /spec/database.yml.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/spec/database.yml.ci -------------------------------------------------------------------------------- /spec/database.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/spec/database.yml.sample -------------------------------------------------------------------------------- /spec/shibaraku_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/spec/shibaraku_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/create_test_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onk/shibaraku/HEAD/spec/support/create_test_database.rb --------------------------------------------------------------------------------