├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bitfield_attribute.gemspec ├── gemfiles ├── ar40.gemfile ├── ar41.gemfile ├── ar42.gemfile ├── ar50.gemfile ├── ar51.gemfile └── ar60.gemfile ├── lib ├── bitfield_attribute.rb └── bitfield_attribute │ ├── base.rb │ └── version.rb └── spec ├── lib ├── activerecord_spec.rb └── base_spec.rb ├── spec_helper.rb └── support └── test_bitfield.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/Rakefile -------------------------------------------------------------------------------- /bitfield_attribute.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/bitfield_attribute.gemspec -------------------------------------------------------------------------------- /gemfiles/ar40.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/gemfiles/ar40.gemfile -------------------------------------------------------------------------------- /gemfiles/ar41.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/gemfiles/ar41.gemfile -------------------------------------------------------------------------------- /gemfiles/ar42.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/gemfiles/ar42.gemfile -------------------------------------------------------------------------------- /gemfiles/ar50.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/gemfiles/ar50.gemfile -------------------------------------------------------------------------------- /gemfiles/ar51.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/gemfiles/ar51.gemfile -------------------------------------------------------------------------------- /gemfiles/ar60.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/gemfiles/ar60.gemfile -------------------------------------------------------------------------------- /lib/bitfield_attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/lib/bitfield_attribute.rb -------------------------------------------------------------------------------- /lib/bitfield_attribute/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/lib/bitfield_attribute/base.rb -------------------------------------------------------------------------------- /lib/bitfield_attribute/version.rb: -------------------------------------------------------------------------------- 1 | module BitfieldAttribute 2 | VERSION = "1.0.3".freeze 3 | end 4 | -------------------------------------------------------------------------------- /spec/lib/activerecord_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/spec/lib/activerecord_spec.rb -------------------------------------------------------------------------------- /spec/lib/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/spec/lib/base_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/test_bitfield.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzigzigzeo/bitfield_attribute/HEAD/spec/support/test_bitfield.rb --------------------------------------------------------------------------------