lingohub 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/lingohub/commands/base.rb +1 -32
- data/lib/lingohub/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e714a52b6de55c4e5cc49d9638f624c69e31db00a4b764ac7f6747dfdc4c20e
|
4
|
+
data.tar.gz: 01dac716390a72b91b8408359faabeec767d91427dc4c9b211026ec744c2f165
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86cdc688619ee5608e911d99da6be9691f7928ea634ed175b568f5d6d3711db4c5a687b0c89cea8f2b30d95a1298bcc0b26302ea2d60839ad0c9e9a434aa519e
|
7
|
+
data.tar.gz: 30db4c51e63c2d4ec1348401941675edb690a14bc4a6e2c9a2e0e40c448a02ee245246800e3863627c9b1fcf1877656099054772b02f2bfb5bd1cbe6cde7d93b
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -20,7 +20,7 @@ module Lingohub::Command
|
|
20
20
|
def project_title(force=true)
|
21
21
|
project_title = extract_project_title_from_args
|
22
22
|
unless project_title
|
23
|
-
project_title =
|
23
|
+
project_title = extract_project_title_from_dir_name ||
|
24
24
|
raise(CommandFailed, "No project specified.\nRun this command from project folder or set it adding --project <title>") if force
|
25
25
|
@autodetected_project_name = true
|
26
26
|
end
|
@@ -38,42 +38,11 @@ module Lingohub::Command
|
|
38
38
|
File.basename(dir)
|
39
39
|
end
|
40
40
|
|
41
|
-
def extract_project_title_from_git
|
42
|
-
dir = Dir.pwd
|
43
|
-
return unless remotes = git_remotes(dir)
|
44
|
-
|
45
|
-
if remote = extract_option('--remote')
|
46
|
-
remotes[remote]
|
47
|
-
elsif remote = extract_app_from_git_config
|
48
|
-
remotes[remote]
|
49
|
-
else
|
50
|
-
apps = remotes.values.uniq
|
51
|
-
return apps.first if apps.size == 1
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
41
|
def extract_app_from_git_config
|
56
42
|
remote = git("config heroku.remote")
|
57
43
|
remote == "" ? nil : remote
|
58
44
|
end
|
59
45
|
|
60
|
-
def git_remotes(base_dir=Dir.pwd)
|
61
|
-
remotes = { }
|
62
|
-
original_dir = Dir.pwd
|
63
|
-
Dir.chdir(base_dir)
|
64
|
-
|
65
|
-
# TODO
|
66
|
-
# git("remote -v").split("\n").each do |remote|
|
67
|
-
# name, url, method = remote.split(/\s/)
|
68
|
-
# if url =~ /^git@#{heroku.host}:([\w\d-]+)\.git$/
|
69
|
-
# remotes[name] = $1
|
70
|
-
# end
|
71
|
-
# end
|
72
|
-
|
73
|
-
Dir.chdir(original_dir)
|
74
|
-
remotes
|
75
|
-
end
|
76
|
-
|
77
46
|
def extract_option(options, default=true)
|
78
47
|
values = options.is_a?(Array) ? options : [options]
|
79
48
|
return unless opt_index = args.select { |a| values.include? a }.first
|
data/lib/lingohub/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lingohub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lingohub GmbH
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -114,8 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
- !ruby/object:Gem::Version
|
115
115
|
version: '0'
|
116
116
|
requirements: []
|
117
|
-
|
118
|
-
rubygems_version: 2.7.6
|
117
|
+
rubygems_version: 3.0.1
|
119
118
|
signing_key:
|
120
119
|
specification_version: 4
|
121
120
|
summary: Client library and command-line tool to translate Ruby based apps with lingohub.
|