skippy 0.4.0.a → 0.4.1.a
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/.rubocop.yml +20 -0
- data/.vscode/tasks.json +14 -12
- data/app/commands/install.rb +1 -1
- data/app/commands/lib.rb +2 -1
- data/lib/skippy/installer/git.rb +1 -1
- data/lib/skippy/lib_source.rb +4 -1
- data/lib/skippy/module_manager.rb +1 -1
- data/lib/skippy/os/common.rb +1 -1
- data/lib/skippy/os/mac.rb +1 -1
- data/lib/skippy/os/win.rb +1 -1
- data/lib/skippy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce2b2452959a54d094d90bac57789f3738137f7d94ce844db4a6a2b08788925d
|
4
|
+
data.tar.gz: f3984931967ac74cfb3d5c8c233855385e0bee8c046d4d8156c0fec1d503d320
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b18020a84524b9d4842e22939ada7fdf9f1edec500a4dce6d9ff6642ef47d335c46debb5c7933a4e504c191eb953af5a4654977787b9ce6e1734e408c1019f7f
|
7
|
+
data.tar.gz: 1836e67a3a1a547b3f7f9caa96d729157246621df36045171920e234eeccc9224419730a53dddf6d17a603b6d1871135d2ad1dcd99472fd34dbc833c4d3f19a3
|
data/.rubocop.yml
CHANGED
@@ -45,6 +45,10 @@ Metrics/ClassLength:
|
|
45
45
|
Exclude:
|
46
46
|
- test/**/*
|
47
47
|
|
48
|
+
# Too noisy.
|
49
|
+
Metrics/CyclomaticComplexity:
|
50
|
+
Enabled: false
|
51
|
+
|
48
52
|
Metrics/LineLength:
|
49
53
|
Exclude:
|
50
54
|
- features/step_definitions/**/*
|
@@ -53,6 +57,10 @@ Metrics/MethodLength:
|
|
53
57
|
Exclude:
|
54
58
|
- test/**/*
|
55
59
|
|
60
|
+
# Too noisy.
|
61
|
+
Metrics/PerceivedComplexity:
|
62
|
+
Enabled: false
|
63
|
+
|
56
64
|
# Prefer { ... } over do ... end except for control flow and
|
57
65
|
# method defintions. Unfortunatly, no cop configuration for this.
|
58
66
|
# https://github.com/chneukirchen/styleguide/blob/e60de37b478d3f892f6985a58d573016f33f0269/RUBY-STYLE#L63-L67
|
@@ -82,6 +90,18 @@ Style/Documentation:
|
|
82
90
|
Style/GuardClause:
|
83
91
|
Enabled: false
|
84
92
|
|
93
|
+
# In the context of the Thor DLS the rocket arrow => reads better.
|
94
|
+
Style/HashSyntax:
|
95
|
+
Exclude:
|
96
|
+
- app/commands/**/*
|
97
|
+
|
98
|
+
# Some times it reads clearer to not trail if/unless at the end.
|
99
|
+
Style/IfUnlessModifier:
|
100
|
+
Enabled: false
|
101
|
+
|
102
|
+
Style/ModuleFunction:
|
103
|
+
Enabled: false
|
104
|
+
|
85
105
|
# %w and %i etc isn't really intuitive unless you are really familiar with the
|
86
106
|
# syntax. %w seems used often enough. But [:symbol, :foo] reads clearer than
|
87
107
|
# %i(symbol foo).
|
data/.vscode/tasks.json
CHANGED
@@ -1,16 +1,18 @@
|
|
1
1
|
{
|
2
2
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
3
3
|
// for the documentation about the tasks.json format
|
4
|
-
"version": "0.
|
5
|
-
"
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
4
|
+
"version": "2.0.0",
|
5
|
+
"tasks": [
|
6
|
+
{
|
7
|
+
"label": "rake test FILE",
|
8
|
+
"type": "shell",
|
9
|
+
"command": "bundle",
|
10
|
+
"args": [
|
11
|
+
"exec",
|
12
|
+
"rake",
|
13
|
+
"TEST=${relativeFile}"
|
14
|
+
],
|
15
|
+
"group": "test"
|
16
|
+
}
|
17
|
+
]
|
16
18
|
}
|
data/app/commands/install.rb
CHANGED
@@ -22,7 +22,7 @@ class Install < Skippy::Command::Group
|
|
22
22
|
next if library[:version].nil? || library[:source].nil?
|
23
23
|
|
24
24
|
options = {
|
25
|
-
requirement: library[:version]
|
25
|
+
requirement: library[:version],
|
26
26
|
}
|
27
27
|
options[:branch] = library[:branch] unless library[:branch].nil?
|
28
28
|
lib = project.libraries.install(library[:source], options)
|
data/app/commands/lib.rb
CHANGED
@@ -39,7 +39,8 @@ class Lib < Skippy::Command
|
|
39
39
|
def install(source)
|
40
40
|
project = Skippy::Project.current_or_fail
|
41
41
|
libraries = project.libraries
|
42
|
-
|
42
|
+
installation_options = install_options(options)
|
43
|
+
library = libraries.install(source, installation_options) { |type, message|
|
43
44
|
color = type == :warning ? :red : :yellow
|
44
45
|
say message, color
|
45
46
|
}
|
data/lib/skippy/installer/git.rb
CHANGED
@@ -62,7 +62,7 @@ class Skippy::GitLibraryInstaller < Skippy::LibraryInstaller
|
|
62
62
|
# @param [Git::Base]
|
63
63
|
# @param [String] branch
|
64
64
|
def checkout_branch(git, branch)
|
65
|
-
branches = git.
|
65
|
+
branches = git.branches.map(&:name)
|
66
66
|
info "Branches: #{branches.inspect}"
|
67
67
|
unless branches.include?(branch)
|
68
68
|
raise Skippy::BranchNotFound, "Found no branch named: '#{branch}'"
|
data/lib/skippy/lib_source.rb
CHANGED
@@ -117,7 +117,10 @@ class Skippy::LibrarySource
|
|
117
117
|
# @param [String] source
|
118
118
|
# @return [String]
|
119
119
|
def resolve_from_git_uri(source)
|
120
|
-
|
120
|
+
# This can be a local Windows path, normalize path separators to allow the
|
121
|
+
# path to be parsed.
|
122
|
+
normalized = source.tr('\\', '/')
|
123
|
+
uri = URI.parse(normalized)
|
121
124
|
# When logged in, BitBucket will display a URI with the user's username.
|
122
125
|
uri.user = ''
|
123
126
|
uri.to_s
|
data/lib/skippy/os/common.rb
CHANGED
data/lib/skippy/os/mac.rb
CHANGED
data/lib/skippy/os/win.rb
CHANGED
@@ -33,7 +33,7 @@ class Skippy::OSWin < Skippy::OSCommon
|
|
33
33
|
executable: exe,
|
34
34
|
version: version,
|
35
35
|
can_debug: File.exist?(debug_dll),
|
36
|
-
is64bit: SYSTEM_64BIT && path.start_with?("#{PROGRAM_FILES_64BIT}/")
|
36
|
+
is64bit: SYSTEM_64BIT && path.start_with?("#{PROGRAM_FILES_64BIT}/")
|
37
37
|
)
|
38
38
|
}
|
39
39
|
}
|
data/lib/skippy/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: skippy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1.a
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Thomassen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: git
|