has_blob_bit_field 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +7 -2
- data/README.md +2 -0
- data/gemfiles/rails_3.gemfile +5 -0
- data/gemfiles/rails_4.gemfile +7 -0
- data/gemfiles/rails_5.gemfile +5 -0
- data/lib/has_blob_bit_field.rb +2 -2
- data/lib/has_blob_bit_field/extension.rb +1 -1
- data/lib/has_blob_bit_field/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49981851b7b6ee4e6f47c6dd40d972da94f2214c
|
4
|
+
data.tar.gz: 42fd5835bb8f988c99e3ec6e79c9d08e9112bccc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55d8342bd3714c23dcd756a1f075f5eb77ae464e78f4d674b3d02181e1c1cd9712c676a6eb680570cb33967c6647e2bb32518de8a672dae5e24dd0ef4bf90b3d
|
7
|
+
data.tar.gz: dcb70d44e7418e9f96f289c80a13437fc0c96e75ef4437b6355294b0ec2c698ce617d448502504bb9a87a14c0ac3ecf03e650d97a2746955cb80c82215867c99
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -52,6 +52,8 @@ o.many_flags[700] # => IndexError
|
|
52
52
|
|
53
53
|
* Accessing out of bounds indices raises an `IndexError`, but code could be adapted easily to return `nil` instead.
|
54
54
|
|
55
|
+
* Targets: Ruby 2.0+, Rails 3.0+
|
56
|
+
|
55
57
|
## Development
|
56
58
|
|
57
59
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/lib/has_blob_bit_field.rb
CHANGED
@@ -3,6 +3,6 @@ require_relative "has_blob_bit_field/version"
|
|
3
3
|
require_relative "has_blob_bit_field/accessor"
|
4
4
|
require_relative "has_blob_bit_field/extension"
|
5
5
|
|
6
|
-
module
|
7
|
-
|
6
|
+
module ActiveModel::Dirty
|
7
|
+
include HasBlobBitField::Extension
|
8
8
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: has_blob_bit_field
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc-Andre Lafortune
|
@@ -110,6 +110,9 @@ files:
|
|
110
110
|
- Rakefile
|
111
111
|
- bin/console
|
112
112
|
- bin/setup
|
113
|
+
- gemfiles/rails_3.gemfile
|
114
|
+
- gemfiles/rails_4.gemfile
|
115
|
+
- gemfiles/rails_5.gemfile
|
113
116
|
- has_blob_bit_field.gemspec
|
114
117
|
- lib/has_blob_bit_field.rb
|
115
118
|
- lib/has_blob_bit_field/accessor.rb
|