lingohub 0.4.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +12 -4
  3. data/lib/lingohub/version.rb +1 -1
  4. metadata +26 -34
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 65feb5d33518892ae47f34dfc11ebaef2e2ebe5a
4
+ data.tar.gz: 87c8a017164de1a32782e6000f10a13adb27f596
5
+ SHA512:
6
+ metadata.gz: 1ef0bf6c117158c469eadbf3f50b94af7b5423993dcc6357fa298935d9e347e8367e837ce4c5a514f5a83d065a915fb437ed4c3e0234b8cf730e3bfa137358b9
7
+ data.tar.gz: 5241d965ba3d4052a62ee043b9ee2fca33851eee467c7236188b42edfae8de356be4dd72e586a131d47d2be8629aa3aaffcbf72c0721bd862b5fe73551e9faef
data/README.md CHANGED
@@ -1,6 +1,14 @@
1
- ## lingohub ruby
1
+ ## lingohub client
2
2
 
3
- ### Documentation
3
+ Client library and command-line tool to translate apps with [LingoHub](https://lingohub.com/).
4
+
5
+ ### Install
6
+
7
+ ``` bash
8
+ gem install lingohub
9
+ ```
10
+
11
+ ### Usage
4
12
 
5
13
  #### Retrieving resource files
6
14
 
@@ -17,8 +25,8 @@ lingohub resource:down --locale 'de' --directory config/locales/de --project 'li
17
25
  ### Maintainers
18
26
 
19
27
  * Markus Merzinger (https://github.com/maerzbow)
20
- * Helmut Juskewycz (https://github.com/hjuskewycz)
28
+ * Helmut Juskewycz (https://github.com/hemju)
21
29
 
22
30
  ## License
23
31
 
24
- MIT License. Copyright 2012 lingohub GmbH. http://lingohub.com
32
+ MIT License. Copyright 2017 lingohub GmbH. https://lingohub.com
@@ -1,4 +1,4 @@
1
1
  module Lingohub
2
- VERSION = '0.4.1'
2
+ VERSION = '0.5.0'
3
3
  API_VERSION = 'v1'
4
4
  end
metadata CHANGED
@@ -1,64 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lingohub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
5
- prerelease:
4
+ version: 0.5.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - lingohub GmbH
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2015-02-26 00:00:00.000000000 Z
11
+ date: 2017-06-15 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rest-client
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - '='
20
18
  - !ruby/object:Gem::Version
21
- version: 1.6.7
19
+ version: 2.0.2
22
20
  type: :runtime
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
- version: 1.6.7
26
+ version: 2.0.2
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: launchy
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - '='
36
32
  - !ruby/object:Gem::Version
37
- version: 2.0.5
33
+ version: 2.4.3
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - '='
44
39
  - !ruby/object:Gem::Version
45
- version: 2.0.5
40
+ version: 2.4.3
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: stringex
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ~>
45
+ - - '='
52
46
  - !ruby/object:Gem::Version
53
- version: 1.3.2
47
+ version: 2.7.1
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ~>
52
+ - - '='
60
53
  - !ruby/object:Gem::Version
61
- version: 1.3.2
54
+ version: 2.7.1
62
55
  description: Client library and command-line tool to translate Ruby based apps with
63
56
  lingohub.
64
57
  email:
@@ -68,6 +61,13 @@ executables:
68
61
  extensions: []
69
62
  extra_rdoc_files: []
70
63
  files:
64
+ - CHANGELOG.md
65
+ - LICENSE
66
+ - README.md
67
+ - REST.md
68
+ - ROADMAP.md
69
+ - bin/lingohub
70
+ - lib/lingohub.rb
71
71
  - lib/lingohub/client.rb
72
72
  - lib/lingohub/command.rb
73
73
  - lib/lingohub/commands/auth.rb
@@ -83,36 +83,28 @@ files:
83
83
  - lib/lingohub/models/user.rb
84
84
  - lib/lingohub/rails3/railtie.rb
85
85
  - lib/lingohub/version.rb
86
- - lib/lingohub.rb
87
86
  - lib/vendor/okjson.rb
88
- - bin/lingohub
89
- - LICENSE
90
- - CHANGELOG.md
91
- - README.md
92
- - REST.md
93
- - ROADMAP.md
94
87
  homepage: https://lingohub.com
95
88
  licenses: []
89
+ metadata: {}
96
90
  post_install_message:
97
91
  rdoc_options: []
98
92
  require_paths:
99
93
  - lib
100
94
  required_ruby_version: !ruby/object:Gem::Requirement
101
- none: false
102
95
  requirements:
103
- - - ! '>='
96
+ - - ">="
104
97
  - !ruby/object:Gem::Version
105
98
  version: '0'
106
99
  required_rubygems_version: !ruby/object:Gem::Requirement
107
- none: false
108
100
  requirements:
109
- - - ! '>='
101
+ - - ">="
110
102
  - !ruby/object:Gem::Version
111
103
  version: '0'
112
104
  requirements: []
113
105
  rubyforge_project:
114
- rubygems_version: 1.8.25
106
+ rubygems_version: 2.6.10
115
107
  signing_key:
116
- specification_version: 3
108
+ specification_version: 4
117
109
  summary: Client library and command-line tool to translate Ruby based apps with lingohub.
118
110
  test_files: []