localeapp 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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YjQ2MmQ4NGMzNzQ0ZGQwNzJjNzkwZTU0ZjU5MGU3MmU0YTI0Y2E5ZA==
4
+ MzAxNGJkZThkNjM0NDY1MWFhODFhNDhlY2Q5ZGRkMDQzZTEzNzE3Ng==
5
5
  data.tar.gz: !binary |-
6
- Mjg1ZGY4ZTdkNjdhZGQ2NjBmNThiOTE1NzExNjU0M2UyYzBkZGUyYg==
6
+ NjVkNzMyNTE3OTRlOGI1MmRiMGMzMTgxY2Y5Yzg3YzNhNTlkYWZmNA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- Zjg1OGEzMWMyMWI5Y2E3YzhiNWUxYTY4YjVjMTEyYmZlZDQ4MGVhZDM2NzIw
10
- OWJhYzRkN2RlMGI2OTNlNTZhMWIzNDlkNWRmYjk3NDhjZGE1NjVmYjg0ZWYy
11
- Yjc4ZjNiMjk2MmZmYzhlZmI0OWFlOTQ0ZTZkMTE1OTRlMmIzZTI=
9
+ NmJlNzRmYjQ3ZmUxZWRhM2FiNGExNzdlYzc4MTEzY2QzMjlhMGM1MDQ0MjNl
10
+ MTBkYTg2YmZmNDAxYmVlY2RhNDIwMmU0YTk1ZTQ4MzMyNWUzNDNhYzM1YzU2
11
+ ODNiOWM4Y2NiZmMxNDYyNjAyNDVmZTdkMjkyNDY2M2NhNGMzYjc=
12
12
  data.tar.gz: !binary |-
13
- NGU5ZDBkOWQyZDE4ZGIxMTU4NTcyODg3MjBmNmYzYWM3NDczMTExNWQ1MDYy
14
- NDhmMmY0YzNiOGUzNWYwNmVkZmQyYzVlNDY4NTgwYmY3NDU2ZDc1MTBjMTg3
15
- Y2I5NGRiNDczNDFiNWI3ZDY1YmQxMmY0OGM0YmY2NTJiMjQzNGM=
13
+ ZTE3NWYyN2EzNDMxNGUxZGFlNmEyYjU2ZWNmN2NlYjMwM2E4OTdiYWRlMDVh
14
+ NzVmY2EzM2E3NzVmYTUzYjM2ZWRiZTFkYjZiZjc0ODFmMmM0OGI1OTQ3ZDEw
15
+ OGRkYmQyOWE1M2YzMjhmMDk3ZTkyMDA2ODc4NTQ5ZjZkYzI3MjU=
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # master
2
2
 
3
+ # Version 1.0.1
4
+
5
+ * Fix error when bundling with Rails >= 4.2 (due to a dependency on i18n < 0.7)
6
+
3
7
  # Version 1.0
4
8
 
5
9
  * Drop support for Ruby 1.9.2
@@ -1,3 +1,3 @@
1
1
  module Localeapp
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
data/localeapp.gemspec CHANGED
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
6
6
  s.name = "localeapp"
7
7
  s.version = Localeapp::VERSION
8
8
  s.platform = Gem::Platform::RUBY
9
- s.authors = ["Christopher Dell", "Chris McGrath"]
10
- s.email = ["chris@tigrish.com", "chris@octopod.info"]
9
+ s.authors = ["Christopher Dell", "Chris McGrath", "Michael Baudino"]
10
+ s.email = ["chris@tigrish.com", "chris@octopod.info", "michael.baudino@alpine-lab.com"]
11
11
  s.homepage = "http://www.localeapp.com"
12
12
  s.summary = %q{Easy i18n translation management with localeapp.com}
13
13
  s.description = %q{Synchronizes i18n translation keys and content with localeapp.com so you don't have to manage translations by hand.}
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
21
21
  s.require_paths = ["lib"]
22
22
 
23
- s.add_dependency('i18n', '< 0.7')
23
+ s.add_dependency('i18n')
24
24
  s.add_dependency('json')
25
25
  s.add_dependency('rest-client')
26
26
  s.add_dependency('rack')
data/spec/spec_helper.rb CHANGED
@@ -6,6 +6,8 @@ require 'support/localeapp_synchronization_data'
6
6
  require 'support/i18n/missing_translation'
7
7
  require 'logger'
8
8
 
9
+ I18n.config.available_locales = :en
10
+
9
11
  def with_configuration(options = {})
10
12
  Localeapp.configuration = nil
11
13
  Localeapp.configure do |configuration|
metadata CHANGED
@@ -1,30 +1,31 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: localeapp
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
  - Christopher Dell
8
8
  - Chris McGrath
9
+ - Michael Baudino
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2015-12-19 00:00:00.000000000 Z
13
+ date: 2015-12-20 00:00:00.000000000 Z
13
14
  dependencies:
14
15
  - !ruby/object:Gem::Dependency
15
16
  name: i18n
16
17
  requirement: !ruby/object:Gem::Requirement
17
18
  requirements:
18
- - - <
19
+ - - ! '>='
19
20
  - !ruby/object:Gem::Version
20
- version: '0.7'
21
+ version: '0'
21
22
  type: :runtime
22
23
  prerelease: false
23
24
  version_requirements: !ruby/object:Gem::Requirement
24
25
  requirements:
25
- - - <
26
+ - - ! '>='
26
27
  - !ruby/object:Gem::Version
27
- version: '0.7'
28
+ version: '0'
28
29
  - !ruby/object:Gem::Dependency
29
30
  name: json
30
31
  requirement: !ruby/object:Gem::Requirement
@@ -198,6 +199,7 @@ description: Synchronizes i18n translation keys and content with localeapp.com s
198
199
  email:
199
200
  - chris@tigrish.com
200
201
  - chris@octopod.info
202
+ - michael.baudino@alpine-lab.com
201
203
  executables:
202
204
  - localeapp
203
205
  extensions: []