showdown-team-import 0.3.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ecf800f0fcfa71cc66cd47a1c8a6684b6c86b670
4
- data.tar.gz: 29fc3dd7fc9ec1a2633c5f19177175024e3bfeef
3
+ metadata.gz: 22ad6df0ea6cc1466640babbe6193a158bb6d502
4
+ data.tar.gz: 927e9342b4b68d0539b9da2444fed08b7e525743
5
5
  SHA512:
6
- metadata.gz: 45ec90b9edd14f12e6148a13f9e1b3eaa5be0df126d5eee49d97228aef0034fb9862a966db519f0bc4c061099d9743a83a74dcb275f6ac398c83ec6fa61af9e6
7
- data.tar.gz: a06b294d98bbc122b2e305600459d141a49472e04270e49e612c81d4a8c8416ca5c3c98ddf3fa5e74737ffa4f1da7790dc0b2d2cd2e7119450aef31c827656c2
6
+ metadata.gz: 95baf69d282d3238a6ece2fd72d7b79130e91555aae09a717ad32eddbc36131fef7a86615ca167b015fe200d3fe857c05d188a83a84924389aced7f4d97f646f
7
+ data.tar.gz: 63ee8c5558ebe78da8a103c54ee91d993ba3782a27863c7306aaa98ad2f30b2171195013290dced5e9aaa22e03dfadcfdd0edd5c30080ee5dc5d01c6e789606c
data/README.md CHANGED
@@ -3,7 +3,11 @@ showdown-team-import
3
3
  A basic ruby gem which takes a team backup file and an optional directory as arguments,and writes each team as a separate file inside the specified directory (or in the current directory).
4
4
 
5
5
  ```
6
- $ showdown-team-import <team import> [optional directory]
6
+ Usage: showdown-team-import [options] <File containing team backup>
7
+ -s, --silent Run silently
8
+ -p, --path [path] Path to save to
9
+ -h, --help Display this screen
10
+ -n, --no-dirs Do not save in tier-specific directories (off by default)
7
11
  ```
8
12
 
9
13
  ## Installation
data/Rakefile CHANGED
@@ -18,12 +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 = <<-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
21
+ gem.description = %Q{A basic ruby gem which takes a team backup file and writes each team as a separate file inside the specified directory (or in the current directory). Teams will be organized by tier.}
25
22
  gem.email = "aptyget@gmail.com"
26
23
  gem.authors = ["apt-get"]
24
+ gem.required_ruby_version = '>= 1.9.3'
27
25
  # dependencies defined in Gemfile
28
26
  end
29
27
  Jeweler::RubygemsDotOrgTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
@@ -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.3.0 ruby lib
5
+ # stub: showdown-team-import 0.3.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "showdown-team-import"
9
- s.version = "0.3.0"
9
+ s.version = "0.3.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"]
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 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"
15
+ s.description = "A basic ruby gem which takes a team backup file and writes each team as a separate file inside the specified directory (or in the current directory). Teams will be organized by tier."
16
16
  s.email = "aptyget@gmail.com"
17
17
  s.executables = ["showdown-team-import"]
18
18
  s.extra_rdoc_files = [
@@ -34,6 +34,7 @@ Gem::Specification.new do |s|
34
34
  ]
35
35
  s.homepage = "http://github.com/lc-guy/showdown-team-import"
36
36
  s.licenses = ["MIT"]
37
+ s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
37
38
  s.rubygems_version = "2.4.6"
38
39
  s.summary = "A Pokemon Showdown! team backup parser that lets you export to files."
39
40
 
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.3.0
4
+ version: 0.3.1
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 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]"
55
+ description: A basic ruby gem which takes a team backup file and writes each team
56
+ as a separate file inside the specified directory (or in the current directory).
57
+ Teams will be organized by tier.
58
58
  email: aptyget@gmail.com
59
59
  executables:
60
60
  - showdown-team-import
@@ -86,7 +86,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: '0'
89
+ version: 1.9.3
90
90
  required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  requirements:
92
92
  - - ">="