showdown-team-import 0.2.1 → 0.2.2
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/Rakefile +4 -3
- data/VERSION +1 -1
- data/showdown-team-import.gemspec +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6512fd34fe6efb4e5641b41a81dd8a44a7f979d1
|
4
|
+
data.tar.gz: 2502fdeda1458ef3405e99e115dd03dac9349330
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82fa19fc50d558f68fc35fc237be8f816e8c5f8dcd7e7a600aab93ce9b85deaa2ee9e1a3afa8acc0ab6eb3381b044e6e3a907de9b1443fac0b895f0ec3ce9932
|
7
|
+
data.tar.gz: ede3cd6f74bd34131a2464c1ef60e3c6c79ce407c7255147eff2de3b7feb630465d9b2977ee71546c7811c2cf5c87f72573125ff79aa6d38fd6fc5f9741710be
|
data/Rakefile
CHANGED
@@ -18,9 +18,10 @@ Jeweler::Tasks.new do |gem|
|
|
18
18
|
gem.homepage = "http://github.com/lc-guy/showdown-team-import"
|
19
19
|
gem.license = "MIT"
|
20
20
|
gem.summary = %Q{A Pokemon Showdown! team backup parser that lets you export to files.}
|
21
|
-
gem.description =
|
22
|
-
|
23
|
-
|
21
|
+
gem.description = <<-EOF
|
22
|
+
A basic ruby gem which takes a team backup file and an optional directory as argument, and writes each team as a separate file inside the specified directory (or in the current directory).
|
23
|
+
Usage is: "showdown-team-import <team import> [optional directory]"
|
24
|
+
EOF
|
24
25
|
gem.email = "aptyget@gmail.com"
|
25
26
|
gem.authors = ["apt-get"]
|
26
27
|
# dependencies defined in Gemfile
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.2
|
@@ -2,17 +2,17 @@
|
|
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.2.
|
5
|
+
# stub: showdown-team-import 0.2.2 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "showdown-team-import"
|
9
|
-
s.version = "0.2.
|
9
|
+
s.version = "0.2.2"
|
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"]
|
13
13
|
s.authors = ["apt-get"]
|
14
14
|
s.date = "2015-09-11"
|
15
|
-
s.description = "A basic ruby gem which takes a team backup file and an optional directory as
|
15
|
+
s.description = "A basic ruby gem which takes a team backup file and an optional directory as argument, and writes each team as a separate file inside the specified directory (or in the current directory).\nUsage is: \"showdown-team-import <team import> [optional directory]\"\n"
|
16
16
|
s.email = "aptyget@gmail.com"
|
17
17
|
s.executables = ["showdown-team-import"]
|
18
18
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: showdown-team-import
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- apt-get
|
@@ -52,9 +52,9 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 2.0.1
|
55
|
-
description:
|
56
|
-
A basic ruby gem which takes a team backup file and an optional directory as
|
57
|
-
|
55
|
+
description: |
|
56
|
+
A basic ruby gem which takes a team backup file and an optional directory as argument, and writes each team as a separate file inside the specified directory (or in the current directory).
|
57
|
+
Usage is: "showdown-team-import <team import> [optional directory]"
|
58
58
|
email: aptyget@gmail.com
|
59
59
|
executables:
|
60
60
|
- showdown-team-import
|