TopBoardGames 0.5.0 → 0.6.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 +4 -4
- data/README.md +5 -1
- data/TopBoardGames-0.3.0.gem +0 -0
- data/TopBoardGames-0.4.0.gem +0 -0
- data/TopBoardGames-0.5.0.gem +0 -0
- data/TopBoardGames.gemspec +3 -3
- data/bin/top-boardgames +2 -2
- data/lib/TopBoardGames.rb +3 -5
- data/lib/TopBoardGames/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 915352b0d8119cac0eeafadf84c786a750941bdc
|
|
4
|
+
data.tar.gz: bce4569800c8cf2a9548cbecaf98c60d126dec0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9da1e03887479693b200b47c0dd44a693f9cdd6734b83caff9a47e149184017b88eb0e8a8aa0454761ea9da4428f9cf77a0bc75305e40800603017aa5fb3600
|
|
7
|
+
data.tar.gz: 907205fe5046140c1d38dd610300ec47215c4bb87da6287d2daea52a1a0dc3aff86f370658473e11622b0ab57fa66bd09a19f9742e7732fd04a84eb89c8b2420
|
data/README.md
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/TopBoardGames.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = TopBoardGames::VERSION
|
|
9
9
|
spec.authors = ["johanesteves"]
|
|
10
10
|
spec.email = ["jsesteves91@gmail.com"]
|
|
11
|
-
|
|
11
|
+
spec.executables << 'top-boardgames'
|
|
12
12
|
spec.summary = "Returns list of top 100 boardgames from www.boardgamegeek.com"
|
|
13
13
|
spec.description = "Returns list of top 100 boardgames from www.boardgamegeek.com, also allows to get boardgame description"
|
|
14
14
|
spec.homepage = "https://github.com/johanesteves"
|
|
@@ -26,8 +26,8 @@ Gem::Specification.new do |spec|
|
|
|
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 = "exe"
|
|
30
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
29
|
+
#spec.bindir = "exe"
|
|
30
|
+
#spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
31
31
|
spec.require_paths = ["lib"]
|
|
32
32
|
|
|
33
33
|
spec.add_development_dependency "bundler", "~> 1.15"
|
data/bin/top-boardgames
CHANGED
data/lib/TopBoardGames.rb
CHANGED
|
@@ -2,9 +2,7 @@ require 'nokogiri'
|
|
|
2
2
|
require 'pry'
|
|
3
3
|
require 'open-uri'
|
|
4
4
|
|
|
5
|
-
require_relative "./TopBoardGames/version"
|
|
6
|
-
require_relative "./TopBoardGames/cli"
|
|
7
|
-
require_relative "./TopBoardGames/game"
|
|
8
5
|
require_relative "./TopBoardGames/scraper"
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
require_relative "./TopBoardGames/game"
|
|
7
|
+
require_relative "./TopBoardGames/cli"
|
|
8
|
+
require_relative "./TopBoardGames/version"
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: TopBoardGames
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- johanesteves
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2017-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -84,7 +84,8 @@ description: Returns list of top 100 boardgames from www.boardgamegeek.com, also
|
|
|
84
84
|
to get boardgame description
|
|
85
85
|
email:
|
|
86
86
|
- jsesteves91@gmail.com
|
|
87
|
-
executables:
|
|
87
|
+
executables:
|
|
88
|
+
- top-boardgames
|
|
88
89
|
extensions: []
|
|
89
90
|
extra_rdoc_files: []
|
|
90
91
|
files:
|
|
@@ -98,6 +99,9 @@ files:
|
|
|
98
99
|
- Rakefile
|
|
99
100
|
- TopBoardGames-0.1.0.gem
|
|
100
101
|
- TopBoardGames-0.2.0.gem
|
|
102
|
+
- TopBoardGames-0.3.0.gem
|
|
103
|
+
- TopBoardGames-0.4.0.gem
|
|
104
|
+
- TopBoardGames-0.5.0.gem
|
|
101
105
|
- TopBoardGames.gemspec
|
|
102
106
|
- bin/console
|
|
103
107
|
- bin/setup
|