atk_toolbox 0.0.99 → 0.0.100
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/atk/atk_info.rb +5 -3
- data/lib/atk_toolbox/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a670fd16a099feabf9ca5330ebdf6ae88e98db259ad127e07a1aa002a7dd2b5e
|
|
4
|
+
data.tar.gz: fe8fdcd4abd4056b0ea48f94ff15e611e468ad3d8cd47a4bb09ab35bc21b2307
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65a54f2aa614159bbb3b93b6d364375e166465e0c21a9f44fbe53ecb527640528bdb35bc0cbadd670ac8afccfdd7ddcf7596421143e0b4be085d7ecb5233f771
|
|
7
|
+
data.tar.gz: 7152be0201d6ee879a674b15584941d78926b3232cc4bd0895cabac319f51bf5fc8a2af65cc078100d05c41266efdba398f98cec87850535781897e4194ebe4b
|
data/lib/atk/atk_info.rb
CHANGED
|
@@ -117,9 +117,11 @@ module ATK
|
|
|
117
117
|
# else
|
|
118
118
|
raise "That package doesn't seem to be a core package"
|
|
119
119
|
# end
|
|
120
|
-
|
|
120
|
+
# if it does have a slash, and isn't a full url, then assume its a github repo
|
|
121
|
+
elsif not installer_name.start_with?(/https?:\/\//)
|
|
122
|
+
repo_url = "https://github.com/"+installer_name
|
|
121
123
|
else
|
|
122
|
-
repo_url
|
|
124
|
+
return repo_url
|
|
123
125
|
end
|
|
124
126
|
return repo_url
|
|
125
127
|
end
|
|
@@ -151,7 +153,7 @@ module ATK
|
|
|
151
153
|
system(console_line)
|
|
152
154
|
end
|
|
153
155
|
end
|
|
154
|
-
puts "\n\n============================================================"
|
|
156
|
+
puts "\n\n\n\n============================================================"
|
|
155
157
|
puts "Finished running setup for: #{project_path.green}"
|
|
156
158
|
puts "This project has these commands avalible:"
|
|
157
159
|
system "project commands"
|
data/lib/atk_toolbox/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: atk_toolbox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.100
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeff Hykin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-11-
|
|
11
|
+
date: 2019-11-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: zip
|
|
@@ -135,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
135
135
|
version: '0'
|
|
136
136
|
requirements: []
|
|
137
137
|
rubyforge_project:
|
|
138
|
-
rubygems_version: 2.7.
|
|
138
|
+
rubygems_version: 2.7.3
|
|
139
139
|
signing_key:
|
|
140
140
|
specification_version: 4
|
|
141
141
|
summary: The Ruby gem for all the standard tools ATK uses internally
|