multilang-hstore 1.0.0 → 1.0.1

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: 23ee19926b80f1ecbc9da7b7bfc9b12406f49391
4
+ data.tar.gz: ce9bd778a659b5450cd5132c55d487b705cee9fa
5
+ SHA512:
6
+ metadata.gz: e7b3f71b1adc7beee8a9d48583144c43cb90fa53aaf0e5815e870a5409f99d3db69ae6a0cae2c99516889167b9b21f29c588ba39807e59f1887f0cf96eca64c0
7
+ data.tar.gz: 94f088a74d57d3df9706693f16eac9082dee46c59ae8de0b90179e97c673d11a9f757e38f1e6300e3f68026270d9f50fd5f2ee3f9a15d49f74ad21d0c9bc1bc1
data/.gitignore CHANGED
@@ -8,6 +8,7 @@ nbproject/*
8
8
  *.rb~
9
9
  *.yml~
10
10
  *.html~
11
+ *.gem
11
12
  rdoc/*
12
13
 
13
14
 
data/LICENSE CHANGED
@@ -1,5 +1,5 @@
1
1
  Copyright (c) 2010 Arthur Meinart
2
- Copyright (c) 2012-2013 Heapsource.com
2
+ Copyright (c) 2012-2014 Bithavoc - http://bithavoc.io
3
3
 
4
4
  Permission is hereby granted, free of charge, to any person obtaining
5
5
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -12,9 +12,9 @@ This project is a fork of [artworklv/multilang](https://github.com/artworklv/mul
12
12
 
13
13
  ### Rails 3
14
14
 
15
- The last version of the gem for the Rails 3 series is [0.4](https://github.com/heapsource/multilang-hstore/tree/v0.4). You need configure the multilang gem inside your gemfile:
15
+ The last version of the gem for the Rails 3 series is [0.4](https://github.com/bithavoc/multilang-hstore/tree/v0.4). You need configure the multilang gem inside your gemfile:
16
16
 
17
- gem 'multilang-hstore', '~> 0.4'
17
+ gem 'multilang-hstore'
18
18
 
19
19
  Do not forget to run:
20
20
 
@@ -168,9 +168,9 @@ After:
168
168
 
169
169
  ## Bugs and Feedback
170
170
 
171
- Use [http://github.com/heapsource/multilang-hstore/issues](http://github.com/heapsource/multilang-hstore/issues)
171
+ Use [http://github.com/bithavoc/multilang-hstore/issues](http://github.com/bithavoc/multilang-hstore/issues)
172
172
 
173
173
  ## License(MIT)
174
174
 
175
- * Copyright (c) 2012-2013 Heapsource.com
175
+ * Copyright (c) 2012 - 2014 Bithavoc and Contributors - http://bithavoc.io
176
176
  * Copyright (c) 2010 Arthur Meinart
@@ -1,3 +1,3 @@
1
1
  module Multilang
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -3,23 +3,23 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
  require "multilang-hstore/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
- s.name = %q{multilang-hstore}
6
+ s.name = 'multilang-hstore'
7
7
  s.version = Multilang::VERSION
8
8
 
9
- s.authors = ["Arthur Meinart", "Heapsource"]
10
- s.date = %q{2013-07-25}
11
- s.description = %q{Model translations for Rails 3 backed by PostgreSQL and Hstore}
12
- s.email = %q{hello@heapsource.com}
9
+ s.authors = ["Arthur Meinart", "bithavoc"]
10
+ s.description = 'Model translations for Rails 3 backed by PostgreSQL and Hstore'
11
+ s.licenses = ['MIT']
12
+ s.email = 'im@bithavoc.io'
13
13
  s.files = `git ls-files`.split($/)
14
- s.homepage = %q{http://github.com/heapsource/multilang-hstore}
14
+ s.homepage = "http://bithavoc.io/multilang-hstore/"
15
15
  s.require_paths = ["lib"]
16
- s.summary = %q{Model translations for Rails 3 backed by PostgreSQL and Hstore}
16
+ s.summary = %q{Model translations for Rails 3 and Rails 4 backed by PostgreSQL and Hstore}
17
17
  s.test_files = [
18
18
  "spec/multilang_spec.rb",
19
19
  "spec/schema.rb",
20
20
  "spec/spec_helper.rb"
21
21
  ]
22
- s.add_dependency 'pg', '>= 0.0.1'
23
- s.add_dependency 'activerecord', '>= 4.0.0'
22
+ s.add_dependency 'pg', '~> 0.0'
23
+ s.add_dependency 'activerecord', '~> 4.0'
24
24
  end
25
25
 
metadata CHANGED
@@ -1,56 +1,51 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multilang-hstore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
5
- prerelease:
4
+ version: 1.0.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Arthur Meinart
9
- - Heapsource
8
+ - bithavoc
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2013-07-25 00:00:00.000000000 Z
12
+ date: 2014-09-17 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: pg
17
16
  requirement: !ruby/object:Gem::Requirement
18
- none: false
19
17
  requirements:
20
- - - ! '>='
18
+ - - "~>"
21
19
  - !ruby/object:Gem::Version
22
- version: 0.0.1
20
+ version: '0.0'
23
21
  type: :runtime
24
22
  prerelease: false
25
23
  version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
24
  requirements:
28
- - - ! '>='
25
+ - - "~>"
29
26
  - !ruby/object:Gem::Version
30
- version: 0.0.1
27
+ version: '0.0'
31
28
  - !ruby/object:Gem::Dependency
32
29
  name: activerecord
33
30
  requirement: !ruby/object:Gem::Requirement
34
- none: false
35
31
  requirements:
36
- - - ! '>='
32
+ - - "~>"
37
33
  - !ruby/object:Gem::Version
38
- version: 4.0.0
34
+ version: '4.0'
39
35
  type: :runtime
40
36
  prerelease: false
41
37
  version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
38
  requirements:
44
- - - ! '>='
39
+ - - "~>"
45
40
  - !ruby/object:Gem::Version
46
- version: 4.0.0
41
+ version: '4.0'
47
42
  description: Model translations for Rails 3 backed by PostgreSQL and Hstore
48
- email: hello@heapsource.com
43
+ email: im@bithavoc.io
49
44
  executables: []
50
45
  extensions: []
51
46
  extra_rdoc_files: []
52
47
  files:
53
- - .gitignore
48
+ - ".gitignore"
54
49
  - Gemfile
55
50
  - Gemfile.lock
56
51
  - LICENSE
@@ -66,30 +61,30 @@ files:
66
61
  - spec/multilang_spec.rb
67
62
  - spec/schema.rb
68
63
  - spec/spec_helper.rb
69
- homepage: http://github.com/heapsource/multilang-hstore
70
- licenses: []
64
+ homepage: http://bithavoc.io/multilang-hstore/
65
+ licenses:
66
+ - MIT
67
+ metadata: {}
71
68
  post_install_message:
72
69
  rdoc_options: []
73
70
  require_paths:
74
71
  - lib
75
72
  required_ruby_version: !ruby/object:Gem::Requirement
76
- none: false
77
73
  requirements:
78
- - - ! '>='
74
+ - - ">="
79
75
  - !ruby/object:Gem::Version
80
76
  version: '0'
81
77
  required_rubygems_version: !ruby/object:Gem::Requirement
82
- none: false
83
78
  requirements:
84
- - - ! '>='
79
+ - - ">="
85
80
  - !ruby/object:Gem::Version
86
81
  version: '0'
87
82
  requirements: []
88
83
  rubyforge_project:
89
- rubygems_version: 1.8.25
84
+ rubygems_version: 2.2.2
90
85
  signing_key:
91
- specification_version: 3
92
- summary: Model translations for Rails 3 backed by PostgreSQL and Hstore
86
+ specification_version: 4
87
+ summary: Model translations for Rails 3 and Rails 4 backed by PostgreSQL and Hstore
93
88
  test_files:
94
89
  - spec/multilang_spec.rb
95
90
  - spec/schema.rb