phraseapp-in-context-editor-ruby 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 08bedc61fbf888fdc0b936c856eb63d6d0bb3475
|
4
|
+
data.tar.gz: 3442d9094518b0890d302eab1f1d9fc1f38efec4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf0e674700424e314ea0fcb2bc310e6f3be03ce199bac2be6fd6cb0b0ca608a7f1cdc9c9884861ba22b5014af61871eb7a6ee917cd47c632f860c85d7b98ce42
|
7
|
+
data.tar.gz: 4f3c6391d340f416939a9ad2f0843f037f74cfc064570024e457814cfbaf3dabb89ee876e7df81d3b6fa885f61ab964dd65df64e54beb1169f1bde49ace4c2fe
|
data/LICENSE
CHANGED
@@ -1,22 +1,21 @@
|
|
1
|
-
Copyright (c) 2012 Dynport GmbH
|
2
|
-
|
3
1
|
MIT License
|
4
2
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
the
|
3
|
+
Copyright (c) 2012 Dynport GmbH
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
12
11
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
15
14
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
OF
|
22
|
-
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -6,7 +6,7 @@ if defined? Rails
|
|
6
6
|
module PhraseApp
|
7
7
|
module InContextEditor
|
8
8
|
class Engine < Rails::Engine
|
9
|
-
initializer 'phraseapp-in-context-editor-ruby',
|
9
|
+
initializer 'phraseapp-in-context-editor-ruby', before: :disable_dependency_loading do |app|
|
10
10
|
if PhraseApp::InContextEditor.enabled?
|
11
11
|
require 'phraseapp-in-context-editor-ruby/adapters/i18n'
|
12
12
|
require 'phraseapp-in-context-editor-ruby/adapters/fast_gettext'
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.test_files = s.files.grep(%r{^(spec)/})
|
22
22
|
s.require_paths = ["lib"]
|
23
23
|
s.add_dependency('json', '~> 1.8')
|
24
|
-
s.add_dependency('i18n', '
|
24
|
+
s.add_dependency('i18n', '>= 0.6')
|
25
25
|
s.add_dependency('phraseapp-ruby', '~> 1.2.7')
|
26
26
|
s.add_development_dependency('rspec', '~> 3.2')
|
27
27
|
s.add_development_dependency('webmock', '~> 1.21')
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phraseapp-in-context-editor-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dynport GmbH
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: i18n
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0.
|
33
|
+
version: '0.6'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '0.
|
40
|
+
version: '0.6'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: phraseapp-ruby
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -194,9 +194,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
194
|
version: 1.3.6
|
195
195
|
requirements: []
|
196
196
|
rubyforge_project: phraseapp-in-context-editor-ruby
|
197
|
-
rubygems_version: 2.
|
197
|
+
rubygems_version: 2.2.1
|
198
198
|
signing_key:
|
199
199
|
specification_version: 4
|
200
200
|
summary: Translation management solution for web and mobile applications
|
201
201
|
test_files: []
|
202
|
-
has_rdoc:
|