fifa_rankings 0.1.0 → 1.0.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: 78bb5a835439a53d2020f83b521376b7eeb95d47
4
- data.tar.gz: 1a69b9cece494668d481c0854bacacc6d5960e44
3
+ metadata.gz: 03ef443eef1ccc241da0dd37e526d03179148786
4
+ data.tar.gz: af831f9a21f45a12574fc98b55c09bdc630b8a9f
5
5
  SHA512:
6
- metadata.gz: 9bac8393f8e8388c7c2cd887bee74babfe648faa6464adb0dd84649f5b92ec5da114642659555b9bb937e5dbf966f43091f6f4471a465baad5841eb57818b5a7
7
- data.tar.gz: a92afc6f25ca8be79b990df75006e4fa63ed601226382d5a2b8f87fcc362500c0d701259cfbfa661278ddf7f35ed6033612c70fc744407fe8b9a85973269bccc
6
+ metadata.gz: 4708e55ecdf7e9d8de4dbf1543b5c4de9b094d5a59db1331e6885a5e435f8601eab0801dc835dbf9092dccb3ebfb665a99f4d8699473c3de3330d0e1ea07e048
7
+ data.tar.gz: 7810026eec1e5f9ab8e1f02bfaf83b813cd433490c02710a5f54e0bf0af481a1ba1b7f3e840c4be4ceef0b440432bc9f3d72df3fc5bb26c0afcfbde6e4ec5a4e
data/bin/fifa-rankings CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'bundler/setup'
4
- require './lib/fifa_rankings/'
4
+ require_relative '../lib/fifa_rankings'
5
5
 
6
6
  FifaRankings::CLI.new.call
Binary file
@@ -4,31 +4,31 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'fifa_rankings/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = "fifa_rankings"
7
+ spec.name = 'fifa_rankings'
8
8
  spec.version = FifaRankings::VERSION
9
- spec.authors = ["Sydney Chun"]
10
- spec.email = ["schun08@gmail.com"]
9
+ spec.authors = 'Sydney Chun'
10
+ spec.email = 'schun08@gmail.com'
11
11
 
12
12
  spec.summary = "Lists FIFA World Rankings for the top 20 Women's teams."
13
13
  spec.description = "Using data from Wikipedia, lists the top 20 FIFA teams and allows you to learn more information about each team."
14
- spec.homepage = "https://github.com/sydra08/fifa_rankings"
15
- spec.license = "MIT"
14
+ spec.homepage = 'https://github.com/sydra08/fifa_rankings'
15
+ spec.license = 'MIT'
16
16
 
17
17
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
18
  # to allow pushing to a single host or delete this section to allow pushing to any host.
19
- # if spec.respond_to?(:metadata)
20
- # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
- # else
22
- # raise "RubyGems 2.0 or newer is required to protect against " \
23
- # "public gem pushes."
24
- # end
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org/'
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
25
 
26
26
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
27
  f.match(%r{^(test|spec|features)/})
28
28
  end
29
- spec.bindir = "bin"
30
- spec.require_paths = ["lib"]
31
- spec.executables << "fifa-rankings"
29
+ spec.bindir = 'bin'
30
+ spec.require_paths = ['lib']
31
+ spec.executables << 'fifa-rankings'
32
32
 
33
33
  spec.add_development_dependency "bundler", "~> 1.14"
34
34
  spec.add_development_dependency "rake", "~> 10.0"
@@ -1,3 +1,3 @@
1
1
  module FifaRankings
2
- VERSION = "0.1.0"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fifa_rankings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sydney Chun
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-10 00:00:00.000000000 Z
11
+ date: 2017-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,8 +80,7 @@ dependencies:
80
80
  version: '1.7'
81
81
  description: Using data from Wikipedia, lists the top 20 FIFA teams and allows you
82
82
  to learn more information about each team.
83
- email:
84
- - schun08@gmail.com
83
+ email: schun08@gmail.com
85
84
  executables:
86
85
  - fifa-rankings
87
86
  extensions: []
@@ -96,6 +95,7 @@ files:
96
95
  - bin/console
97
96
  - bin/fifa-rankings
98
97
  - bin/setup
98
+ - fifa_rankings-0.1.0.gem
99
99
  - fifa_rankings.gemspec
100
100
  - lib/fifa_rankings.rb
101
101
  - lib/fifa_rankings/cli.rb
@@ -106,7 +106,8 @@ files:
106
106
  homepage: https://github.com/sydra08/fifa_rankings
107
107
  licenses:
108
108
  - MIT
109
- metadata: {}
109
+ metadata:
110
+ allowed_push_host: https://rubygems.org/
110
111
  post_install_message:
111
112
  rdoc_options: []
112
113
  require_paths: