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 +4 -4
- data/TopBoardGames.gemspec +3 -4
- data/lib/TopBoardGames/version.rb +1 -1
- data/spec/TopBoardGames_spec.rb +12 -0
- data/spec/spec_helper.rb +14 -0
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b765122d1eb91f873fa5ab35c413b958c3faab9
|
|
4
|
+
data.tar.gz: ee95a2e27927a7a8179be6865163749b54d54852
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8eabaa0210186c7229167d2bd3e922aaa664187a12a8cf59f3dfffb4b7e4d58dd302b37f0f3673052938a8bb67063daf9fae505fcd7d0a5666c1c589a89fc4ad
|
|
7
|
+
data.tar.gz: 39469214d87b72553d779bc8d1c92cc5d533d6876f9dfdad606f0ec38ca41b49368ac03e28426c783942e5412d1b84a4f761c576bd4e07a7bc5f579d087070c0
|
data/TopBoardGames.gemspec
CHANGED
|
@@ -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
|
|
27
|
-
|
|
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"
|
data/spec/spec_helper.rb
ADDED
|
@@ -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.
|
|
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
|
- - ">="
|