flat_keys 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 21ea8c46aae2729474522e7023d789880e1f46a6
4
+ data.tar.gz: b9f058dea8a1a3ae4cb4ee5cdb81444596d082b6
5
+ SHA512:
6
+ metadata.gz: 759496b954bc9eaf02a4d220a9f1d9c2c7eff302e5e403f8f3399f8d59aeb54489589919505f8e2f579dca632b62620eeddf12b7f8c73528f6c810705dc8902a
7
+ data.tar.gz: 1ca4b828774b6479f7163cd6a3075cfbf174371cc95e041a981ef3307c0002f99ab8d63fd4cacc35719f7590b8262e01383bb8e113d404f50ad47f7f0fb8b5ab
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Firebase.co
1
+ Copyright (c) 2012-2014 Bithavoc.io and Contributors - http://bithavoc.io
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -41,11 +41,13 @@ Both `flat_keys` and `unflat_keys` can be used with custom separators.
41
41
  ## Tests
42
42
 
43
43
  rake
44
+
45
+ ## License (MIT)
46
+
47
+ Copyright (c) 2012-2014 Bithavoc.io and Contributors - http://bithavoc.io
48
+
49
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44
50
 
45
- ## Contributing
51
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
46
52
 
47
- 1. Fork it
48
- 2. Create your feature branch (`git checkout -b my-new-feature`)
49
- 3. Commit your changes (`git commit -am 'Add some feature'`)
50
- 4. Push to the branch (`git push origin my-new-feature`)
51
- 5. Create new Pull Request
53
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/flat_keys.gemspec CHANGED
@@ -6,11 +6,12 @@ require 'flat_keys/version'
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = "flat_keys"
8
8
  gem.version = FlatKeys::VERSION
9
- gem.authors = ["Firebaseco"]
10
- gem.email = ["hello@firebase.co"]
9
+ gem.authors = ["bithavoc"]
10
+ gem.email = ["im@bithavoc.io"]
11
+ gem.licenses = ['MIT']
11
12
  gem.description = %q{Encodes and Decodes key-value hashes.}
12
- gem.summary = %q{Encodes and Decodes key-value hashes.}
13
- gem.homepage = ""
13
+ gem.summary = %q{Encodes and Decodes key-value hashes, specially useful with PostgreSQL hstore.}
14
+ gem.homepage = "http://bithavoc.io/flat_keys"
14
15
 
15
16
  gem.files = `git ls-files`.split($/)
16
17
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
@@ -1,3 +1,3 @@
1
1
  module FlatKeys
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,40 +1,37 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flat_keys
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
5
- prerelease:
4
+ version: 0.0.4
6
5
  platform: ruby
7
6
  authors:
8
- - Firebaseco
7
+ - bithavoc
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-02-17 00:00:00.000000000 Z
11
+ date: 2014-09-17 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rake
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  description: Encodes and Decodes key-value hashes.
31
28
  email:
32
- - hello@firebase.co
29
+ - im@bithavoc.io
33
30
  executables: []
34
31
  extensions: []
35
32
  extra_rdoc_files: []
36
33
  files:
37
- - .gitignore
34
+ - ".gitignore"
38
35
  - Gemfile
39
36
  - LICENSE
40
37
  - README.md
@@ -44,31 +41,30 @@ files:
44
41
  - lib/flat_keys/version.rb
45
42
  - test/flat_keys_test.rb
46
43
  - test/test_helper.rb
47
- homepage: ''
48
- licenses: []
44
+ homepage: http://bithavoc.io/flat_keys
45
+ licenses:
46
+ - MIT
47
+ metadata: {}
49
48
  post_install_message:
50
49
  rdoc_options: []
51
50
  require_paths:
52
51
  - lib
53
52
  required_ruby_version: !ruby/object:Gem::Requirement
54
- none: false
55
53
  requirements:
56
- - - ! '>='
54
+ - - ">="
57
55
  - !ruby/object:Gem::Version
58
56
  version: '0'
59
57
  required_rubygems_version: !ruby/object:Gem::Requirement
60
- none: false
61
58
  requirements:
62
- - - ! '>='
59
+ - - ">="
63
60
  - !ruby/object:Gem::Version
64
61
  version: '0'
65
62
  requirements: []
66
63
  rubyforge_project:
67
- rubygems_version: 1.8.24
64
+ rubygems_version: 2.2.2
68
65
  signing_key:
69
- specification_version: 3
70
- summary: Encodes and Decodes key-value hashes.
66
+ specification_version: 4
67
+ summary: Encodes and Decodes key-value hashes, specially useful with PostgreSQL hstore.
71
68
  test_files:
72
69
  - test/flat_keys_test.rb
73
70
  - test/test_helper.rb
74
- has_rdoc: