TopBoardGames 0.6.0 → 0.7.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: 915352b0d8119cac0eeafadf84c786a750941bdc
4
- data.tar.gz: bce4569800c8cf2a9548cbecaf98c60d126dec0c
3
+ metadata.gz: 1b765122d1eb91f873fa5ab35c413b958c3faab9
4
+ data.tar.gz: ee95a2e27927a7a8179be6865163749b54d54852
5
5
  SHA512:
6
- metadata.gz: e9da1e03887479693b200b47c0dd44a693f9cdd6734b83caff9a47e149184017b88eb0e8a8aa0454761ea9da4428f9cf77a0bc75305e40800603017aa5fb3600
7
- data.tar.gz: 907205fe5046140c1d38dd610300ec47215c4bb87da6287d2daea52a1a0dc3aff86f370658473e11622b0ab57fa66bd09a19f9742e7732fd04a84eb89c8b2420
6
+ metadata.gz: 8eabaa0210186c7229167d2bd3e922aaa664187a12a8cf59f3dfffb4b7e4d58dd302b37f0f3673052938a8bb67063daf9fae505fcd7d0a5666c1c589a89fc4ad
7
+ data.tar.gz: 39469214d87b72553d779bc8d1c92cc5d533d6876f9dfdad606f0ec38ca41b49368ac03e28426c783942e5412d1b84a4f761c576bd4e07a7bc5f579d087070c0
@@ -23,12 +23,11 @@ Gem::Specification.new do |spec|
23
23
  "public gem pushes."
24
24
  end
25
25
 
26
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
- f.match(%r{^(test|spec|features)/})
28
- end
26
+ spec.files = `git ls-files`.split($\)
27
+
29
28
  #spec.bindir = "exe"
30
29
  #spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
- spec.require_paths = ["lib"]
30
+ spec.require_paths = ["lib", "lib/TopBoardGames"]
32
31
 
33
32
  spec.add_development_dependency "bundler", "~> 1.15"
34
33
  spec.add_development_dependency "rake", "~> 10.0"
@@ -1,3 +1,3 @@
1
1
  module TopBoardGames
2
- VERSION = "0.6.0"
2
+ VERSION = "0.7.0"
3
3
  end
@@ -0,0 +1,12 @@
1
+ require "spec_helper"
2
+ require "TopBoardGames"
3
+
4
+ RSpec.describe TopBoardGames do
5
+ it "has a version number" do
6
+ expect(TopBoardGames::VERSION).not_to be nil
7
+ end
8
+
9
+ it "does something useful" do
10
+ expect(false).to eq(true)
11
+ end
12
+ end
@@ -0,0 +1,14 @@
1
+ require "bundler/setup"
2
+ require "TopBoardGames"
3
+
4
+ RSpec.configure do |config|
5
+ # Enable flags like --only-failures and --next-failure
6
+ config.example_status_persistence_file_path = ".rspec_status"
7
+
8
+ # Disable RSpec exposing methods globally on `Module` and `main`
9
+ config.disable_monkey_patching!
10
+
11
+ config.expect_with :rspec do |c|
12
+ c.syntax = :expect
13
+ end
14
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: TopBoardGames
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - johanesteves
@@ -112,6 +112,8 @@ files:
112
112
  - lib/TopBoardGames/scraper.rb
113
113
  - lib/TopBoardGames/version.rb
114
114
  - spec.md
115
+ - spec/TopBoardGames_spec.rb
116
+ - spec/spec_helper.rb
115
117
  homepage: https://github.com/johanesteves
116
118
  licenses:
117
119
  - MIT
@@ -121,6 +123,7 @@ post_install_message:
121
123
  rdoc_options: []
122
124
  require_paths:
123
125
  - lib
126
+ - lib/TopBoardGames
124
127
  required_ruby_version: !ruby/object:Gem::Requirement
125
128
  requirements:
126
129
  - - ">="