showdown-team-import 0.4.0 → 0.4.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/VERSION +1 -1
- data/bin/showdown-team-import +4 -3
- data/showdown-team-import.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc698e75ead3f16aeaa5e79ac3b528e46832d5e8
|
4
|
+
data.tar.gz: 371f8ac31bd0548a09c2788f65e17b5cd02624a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11e718535d4118370ed0f0ff4352da3d59291ff023d798f76b37ffc0662bb96ca57b7b31a741694b404a12e8df14cd88c1bac2ab1c20b3ad5332de7b06a6513f
|
7
|
+
data.tar.gz: 733674ceca896a1bd0c26cf1612bfc7b0e63f74152eaf34178db935cb7ad2d1d87bdaee836cf318647cfbde710946075017a2a3a4da7bd7921ec8d37d91a54e6
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.1
|
data/bin/showdown-team-import
CHANGED
@@ -52,12 +52,13 @@ teams.each do |team| # actual file writing
|
|
52
52
|
filename = "[#{team.tier}] " + filename
|
53
53
|
end
|
54
54
|
location = File.join(dir, filename) # saving in specified directory
|
55
|
-
else
|
56
|
-
unless @options[:no_dirs]
|
55
|
+
else # saving in current directory
|
56
|
+
unless @options[:no_dirs]
|
57
57
|
FileUtils::mkdir_p team.tier
|
58
|
-
location = filename
|
58
|
+
location = filename
|
59
59
|
else
|
60
60
|
location = "[#{team.tier}] " + filename
|
61
|
+
end
|
61
62
|
end
|
62
63
|
|
63
64
|
puts "Writing \"#{location}\"" unless @options[:silent]
|
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: showdown-team-import 0.4.
|
5
|
+
# stub: showdown-team-import 0.4.1 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "showdown-team-import"
|
9
|
-
s.version = "0.4.
|
9
|
+
s.version = "0.4.1"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|