showdown-team-import 0.1.0 → 0.2.0

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: 7c7286f1e7abbe22601333b088e9ec9628945110
4
- data.tar.gz: 8fb825b886cbec5f7e8f256ba47a0a8bf1b78b34
3
+ metadata.gz: e3d9d9befdd62f4efe3841b756fec6f87eb1f0ca
4
+ data.tar.gz: 829c7169069136a7f5792cffa870a92fdfbfc941
5
5
  SHA512:
6
- metadata.gz: 8d96bbed3a5571d7bf21f7f526dd85e3d25880003c29e6adf69bab07536c10dc4df704ce313a36a194031af70cecf215d5ca016315fa7a7caf2006e69b8bee9d
7
- data.tar.gz: 84770ea9563727200c07def49811a7ead33b3ca3cf44c940a5f0b463e0732dbf665ff229b477ccdbc4408d3deda6a4cd1e27e4afe840497c1a26135cc84b27cd
6
+ metadata.gz: e58e8e170205e675d5ab3a71ab7e674450f1e140ca8eca8496c88c89032f2d602fffde4271c3b46626b3d8dfa76e283cb6ac3bd042f3afae571aafdac7f9c642
7
+ data.tar.gz: 65c292267d3a06880f813dcd5aafa4a9aa3fa089f6203e5a30388241a0bddaa765abbcbd8eb808768aac926cd8b0ce55b84225e976f7c7f6cfcf9ee05ed87112
data/README.md ADDED
@@ -0,0 +1,15 @@
1
+ showdown-team-import
2
+ ======
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
+
5
+ ```
6
+ $ showdown-team-import <team import> [optional directory]
7
+ ```
8
+
9
+ ## Installation
10
+ `$ [sudo] gem install showdown-team-import`
11
+
12
+ ## Contact
13
+ * E-mail: `aptyget@gmail.com`
14
+ * Smogon: (http://www.smogon.com/forums/members/apt-get.155314/)[apt-get]
15
+ * IRC: apt-get @ Freenode / SynIRC / Rizon
data/Rakefile CHANGED
@@ -18,7 +18,7 @@ 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 = %Q{A basic ruby gem which takes a team backup file and an optional directory as arguments,} +
21
+ gem.description = %Q{A basic ruby gem which takes a team backup file and an optional directory as arguments, } +
22
22
  %Q{and writes each team as a separate file inside the specified directory (or in the current directory).}
23
23
  gem.email = "aptyget@gmail.com"
24
24
  gem.authors = ["apt-get"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.0
@@ -0,0 +1,57 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+ # stub: showdown-team-import 0.2.0 ruby lib
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = "showdown-team-import"
9
+ s.version = "0.2.0"
10
+
11
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
13
+ s.authors = ["apt-get"]
14
+ s.date = "2015-09-11"
15
+ s.description = "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)."
16
+ s.email = "aptyget@gmail.com"
17
+ s.executables = ["showdown-team-import"]
18
+ s.extra_rdoc_files = [
19
+ "LICENSE.txt",
20
+ "README.md"
21
+ ]
22
+ s.files = [
23
+ ".document",
24
+ "Gemfile",
25
+ "Gemfile.lock",
26
+ "LICENSE.txt",
27
+ "README.md",
28
+ "Rakefile",
29
+ "VERSION",
30
+ "bin/showdown-team-import",
31
+ "lib/showdown-team-import.rb",
32
+ "showdown-team-import.gemspec"
33
+ ]
34
+ s.homepage = "http://github.com/lc-guy/showdown-team-import"
35
+ s.licenses = ["MIT"]
36
+ s.rubygems_version = "2.4.6"
37
+ s.summary = "A Pokemon Showdown! team backup parser that lets you export to files."
38
+
39
+ if s.respond_to? :specification_version then
40
+ s.specification_version = 4
41
+
42
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
43
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
44
+ s.add_development_dependency(%q<bundler>, ["~> 1.0"])
45
+ s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
46
+ else
47
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
48
+ s.add_dependency(%q<bundler>, ["~> 1.0"])
49
+ s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
50
+ end
51
+ else
52
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
53
+ s.add_dependency(%q<bundler>, ["~> 1.0"])
54
+ s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
55
+ end
56
+ end
57
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: showdown-team-import
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - apt-get
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-10 00:00:00.000000000 Z
11
+ date: 2015-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdoc
@@ -53,7 +53,7 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: 2.0.1
55
55
  description: A basic ruby gem which takes a team backup file and an optional directory
56
- as arguments,and writes each team as a separate file inside the specified directory
56
+ as arguments, and writes each team as a separate file inside the specified directory
57
57
  (or in the current directory).
58
58
  email: aptyget@gmail.com
59
59
  executables:
@@ -61,17 +61,18 @@ executables:
61
61
  extensions: []
62
62
  extra_rdoc_files:
63
63
  - LICENSE.txt
64
- - README.rdoc
64
+ - README.md
65
65
  files:
66
66
  - ".document"
67
67
  - Gemfile
68
68
  - Gemfile.lock
69
69
  - LICENSE.txt
70
- - README.rdoc
70
+ - README.md
71
71
  - Rakefile
72
72
  - VERSION
73
73
  - bin/showdown-team-import
74
74
  - lib/showdown-team-import.rb
75
+ - showdown-team-import.gemspec
75
76
  homepage: http://github.com/lc-guy/showdown-team-import
76
77
  licenses:
77
78
  - MIT
data/README.rdoc DELETED
@@ -1,19 +0,0 @@
1
- = showdown-team-import
2
-
3
- Description goes here.
4
-
5
- == Contributing to showdown-team-import
6
-
7
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
- * Fork the project.
10
- * Start a feature/bugfix branch.
11
- * Commit and push until you are happy with your contribution.
12
- * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
- * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
-
15
- == Copyright
16
-
17
- Copyright (c) 2015 apt-get. See LICENSE.txt for
18
- further details.
19
-