hstore_accessor 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a3b755ac2d804d78400da381e4cad63a68647145
4
- data.tar.gz: 7737c2ce560de5ab95fd750234bd7293386b1ab6
3
+ metadata.gz: adf6ed0370312b664c3fa65a0b95662a039e3360
4
+ data.tar.gz: 49ade9c932fa9a56860522a19479c21ae8cb1b0b
5
5
  SHA512:
6
- metadata.gz: 099b5d22584a1734c72760a026dd42898be87ed7d0df5bd2abc0be60d742df11efa341cb6596c3618524db9bf6d0fd5358a98d1d29fed9429d5fb47c2b5da2e2
7
- data.tar.gz: eb978d8c446b53413fd04737a920e7961d61481687cf2de0235c588fc22469c0db949ee4e55e901ef1e388fec2baf8e16d7ae7a96d149696ede082027189e6e6
6
+ metadata.gz: 69e70ea61aeb26354ec2386aa12f38a32f480b62a6c70953a0dffc338f9bd0d4eb1d164926723a342b0b432868086169f8f681739db54e1105e42ed30b653908
7
+ data.tar.gz: 27e43ef6addfd779c2f3515899654ea53a181f96f2e993224a0db2de11cefa30ae0354d288a9d1cecdd7c1fe1461cdf8d80c96735c2b0a78c8e696324b892389
data/README.md CHANGED
@@ -191,8 +191,8 @@ Product.tags_contains(%w(housewares kitchen)) # tags containing a number of valu
191
191
  Two scopes are created for `boolean` fields:
192
192
 
193
193
  ```ruby
194
- Product.is_popular # => when populer is set to true
195
- Product.not_popular # => when populer is set to false
194
+ Product.is_popular # => when popular is set to true
195
+ Product.not_popular # => when popular is set to false
196
196
  ```
197
197
 
198
198
  Predicate methods are also available on instances:
@@ -5,8 +5,8 @@ require "hstore_accessor/version"
5
5
  if ::ActiveRecord::VERSION::STRING.to_f >= 4.2
6
6
  require "hstore_accessor/active_record_4.2/type_helpers"
7
7
  else
8
- require "hstore_accessor/active_record_<_4.2/type_helpers"
9
- require "hstore_accessor/active_record_<_4.2/time_helper"
8
+ require "hstore_accessor/active_record_pre_4.2/type_helpers"
9
+ require "hstore_accessor/active_record_pre_4.2/time_helper"
10
10
  end
11
11
 
12
12
  require "hstore_accessor/serialization"
@@ -1,3 +1,3 @@
1
1
  module HstoreAccessor
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hstore_accessor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Hirn
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2015-02-10 00:00:00.000000000 Z
15
+ date: 2015-03-03 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: activerecord
@@ -192,8 +192,8 @@ files:
192
192
  - hstore_accessor.gemspec
193
193
  - lib/hstore_accessor.rb
194
194
  - lib/hstore_accessor/active_record_4.2/type_helpers.rb
195
- - lib/hstore_accessor/active_record_<_4.2/time_helper.rb
196
- - lib/hstore_accessor/active_record_<_4.2/type_helpers.rb
195
+ - lib/hstore_accessor/active_record_pre_4.2/time_helper.rb
196
+ - lib/hstore_accessor/active_record_pre_4.2/type_helpers.rb
197
197
  - lib/hstore_accessor/macro.rb
198
198
  - lib/hstore_accessor/serialization.rb
199
199
  - lib/hstore_accessor/version.rb