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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 168c90ae5157371ea054ec69c197874af0b9aec0
4
- data.tar.gz: a86a9415f9b2d2d10da0aff72f963019ba535c00
3
+ metadata.gz: 915352b0d8119cac0eeafadf84c786a750941bdc
4
+ data.tar.gz: bce4569800c8cf2a9548cbecaf98c60d126dec0c
5
5
  SHA512:
6
- metadata.gz: 4e374b182a45697c588f6ffcd5610a73bcb1ea0ca4db35d72498e3269f61706d0bd3abec56b0df30b157401f06efa8790633766357ad64dcdbbc5aa79097f063
7
- data.tar.gz: 5c975ec302061a33c986cc1dcce5a8c86b737faf89229d47320ce232f4a07849c44ab3d64356d77275f60563dfe079cae9a66d2fa6f85f0807aa5805b09a4200
6
+ metadata.gz: e9da1e03887479693b200b47c0dd44a693f9cdd6734b83caff9a47e149184017b88eb0e8a8aa0454761ea9da4428f9cf77a0bc75305e40800603017aa5fb3600
7
+ data.tar.gz: 907205fe5046140c1d38dd610300ec47215c4bb87da6287d2daea52a1a0dc3aff86f370658473e11622b0ab57fa66bd09a19f9742e7732fd04a84eb89c8b2420
data/README.md CHANGED
@@ -20,7 +20,11 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
- TODO: Write usage instructions here
23
+ To start type in:
24
+
25
+ $ ./bin/top-boardgames
26
+
27
+ And follow the prompts on screen.
24
28
 
25
29
  ## Development
26
30
 
Binary file
Binary file
Binary file
@@ -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"
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- #require "TopBoardGames"
4
+ require "TopBoardGames"
5
5
  require_relative '../lib/TopBoardGames'
6
6
 
7
- TopBoardGames::CLI.new.cal
7
+ TopBoardGames::CLI.new.call
@@ -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"
@@ -1,3 +1,3 @@
1
1
  module TopBoardGames
2
- VERSION = "0.5.0"
2
+ VERSION = "0.6.0"
3
3
  end
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.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - johanesteves
8
8
  autorequire:
9
- bindir: exe
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