txgh 5.3.0 → 5.3.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 +4 -4
- data/lib/txgh/api/endpoint.rb +12 -0
- data/lib/txgh/api/hooks/push.rb +9 -0
- data/lib/txgh/version.rb +1 -1
- data/txgh.gemspec +2 -0
- metadata +18 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abd1060ad1469719441e5d7de2be9d985900e5cd
|
|
4
|
+
data.tar.gz: c9632ac08de39832a693b155350a7d70c72e5f80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd2d247a7be7b05db8cc0b6a388e9f2544b7c09e334eea6daf501ae770d822970ee13e33fab982e4256501153d64d9f7674ff38a192cb43a3b0133034afcbb3d
|
|
7
|
+
data.tar.gz: 2fa865241cda905755bb05acfc3a5313251d72018c2d457b3719b325c3fd1abab38f81b910e1bc0f8a610066f90c91004fcf8d350f7d491c39e33c1c0b16fda1
|
data/lib/txgh/version.rb
CHANGED
data/txgh.gemspec
CHANGED
|
@@ -24,6 +24,8 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.add_dependency 'sinatra-contrib', '~> 1.4'
|
|
25
25
|
s.add_dependency 'rubyzip', '>= 1.0', '<= 1.1.2'
|
|
26
26
|
|
|
27
|
+
s.add_dependency 'dry-types'
|
|
28
|
+
|
|
27
29
|
s.require_path = 'lib'
|
|
28
30
|
s.files = Dir['{lib,spec}/**/*', 'README.md', 'txgh.gemspec', 'LICENSE']
|
|
29
31
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: txgh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.3.
|
|
4
|
+
version: 5.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew Jackowski
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-07-
|
|
12
|
+
date: 2016-07-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: abroad
|
|
@@ -157,6 +157,20 @@ dependencies:
|
|
|
157
157
|
- - "<="
|
|
158
158
|
- !ruby/object:Gem::Version
|
|
159
159
|
version: 1.1.2
|
|
160
|
+
- !ruby/object:Gem::Dependency
|
|
161
|
+
name: dry-types
|
|
162
|
+
requirement: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - ">="
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '0'
|
|
167
|
+
type: :runtime
|
|
168
|
+
prerelease: false
|
|
169
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
170
|
+
requirements:
|
|
171
|
+
- - ">="
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: '0'
|
|
160
174
|
description: A server that automatically syncs translation resources between Github
|
|
161
175
|
and Transifex.
|
|
162
176
|
email:
|
|
@@ -170,6 +184,8 @@ files:
|
|
|
170
184
|
- README.md
|
|
171
185
|
- lib/ext/zipline/output_stream.rb
|
|
172
186
|
- lib/txgh.rb
|
|
187
|
+
- lib/txgh/api/endpoint.rb
|
|
188
|
+
- lib/txgh/api/hooks/push.rb
|
|
173
189
|
- lib/txgh/app.rb
|
|
174
190
|
- lib/txgh/category_support.rb
|
|
175
191
|
- lib/txgh/config.rb
|