hstorable 0.0.4 → 0.0.5

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: 6d88ba5c8c831b4396b98fea95a66bed50610fa4
4
- data.tar.gz: f091cdfd62f4c81fce00ee8bcdcc1f0775f297b6
3
+ metadata.gz: c874553273b1cbf393614239b89e00236e2c1c3a
4
+ data.tar.gz: a6fb909ca346822b2eb300b76bafefe4e6207c21
5
5
  SHA512:
6
- metadata.gz: 2c89c495e512cce065cf055a82e82db72b9dfb9ad1c8942928769e097e03c8ac1ffe3416cb1ac7f201352c656962a8523309fefa4e685e0b911488935494ce10
7
- data.tar.gz: 911714cc55b8caedf59e0e727ec28b5e4188acd79223f6247dc823a762b8b259a829c4dbe76630e428483c3aeac3a277501fc044cb34568f1df118f873d5e636
6
+ metadata.gz: c860f75ec74fd58debae880de15bc75cd09bf1bf05e16fabfb21c3d86f37eaf333c3d14b1a366e894257021fd9e7a73bf919a9411997fa479a035dc90c00375b
7
+ data.tar.gz: 92f2d6fcfa6dff005bae22c07833e316971ebef4b2acb9a7b19e68a18832614ab13faa2a5ca1442f355493c2ab7b828f19968e971b9fafa7ec71e9e7ff7dbeac
data/README.md CHANGED
@@ -7,7 +7,7 @@ This gem simplifies working wih fields stored using Hstore
7
7
  To use hstorable you should add this line to your Gemfile:
8
8
 
9
9
  ```
10
- gem 'hstorable', '~> 0.0.2'
10
+ gem 'hstorable', '~> 0.0.5'
11
11
  ```
12
12
 
13
13
  Note, this gem depends on hsore extension of PostgreSQL. So, you should create this extension in your db:
@@ -55,10 +55,10 @@ Different types of models with different set of fields will be stored in one tab
55
55
 
56
56
  ```ruby
57
57
  api = Api::OneApiWrapper.new(consumer_key: '743b57c3120b49b42588011066411d98', cosumer_secret: '743b57c3120b49b42588011066411d98')
58
- api.cosumer_key # => 743b57c3120b49b42588011066411d98
59
- api.cosumer_secret # => 743b57c3120b49b42588011066411d98
58
+ api.cosumer_key # => '743b57c3120b49b42588011066411d98'
59
+ api.cosumer_secret # => '743b57c3120b49b42588011066411d98'
60
60
  api.save
61
- api.update cosumer_key: 2afc9269f7ceb78533d6a2e2d72a14f9
61
+ api.update cosumer_key: '2afc9269f7ceb78533d6a2e2d72a14f9'
62
62
  ```
63
63
 
64
64
  Cool, isn't?
data/hstorable.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["sergey.a.tsvetkov@gmail.com"]
11
11
  spec.summary = %q{This gem simplifies working wih fields stored using Hstore}
12
12
  spec.description = %q{This gem simplifies working wih fields stored using Hstore}
13
- spec.homepage = "http://hstorable.kimrgrey.org/"
13
+ spec.homepage = "https://github.com/kimrgrey/hstorable"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split("\n")
@@ -1,3 +1,3 @@
1
1
  module Hstorable
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hstorable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergey Tsvetkov
@@ -70,7 +70,7 @@ files:
70
70
  - lib/hstorable/model_fields.rb
71
71
  - lib/hstorable/simple_fields.rb
72
72
  - lib/hstorable/version.rb
73
- homepage: http://hstorable.kimrgrey.org/
73
+ homepage: https://github.com/kimrgrey/hstorable
74
74
  licenses:
75
75
  - MIT
76
76
  metadata: {}