word_search 1.2.1 → 1.3.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/.rubocop.yml +484 -793
- data/.ruby-version +1 -1
- data/Rakefile +2 -0
- data/docs/Gemfile +2 -2
- data/docs/bin/middleman +3 -2
- data/lib/word_search/version.rb +1 -1
- metadata +3 -3
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.4.
|
1
|
+
2.4.1
|
data/Rakefile
CHANGED
data/docs/Gemfile
CHANGED
@@ -5,10 +5,10 @@
|
|
5
5
|
source "https://rubygems.org"
|
6
6
|
|
7
7
|
# For faster file watcher updates on Windows:
|
8
|
-
gem "wdm", "~> 0.1.0", platforms: %i
|
8
|
+
gem "wdm", "~> 0.1.0", platforms: %i(mswin mingw)
|
9
9
|
|
10
10
|
# Windows does not come with time zone data
|
11
|
-
gem "tzinfo-data", platforms: %i
|
11
|
+
gem "tzinfo-data", platforms: %i(mswin mingw jruby)
|
12
12
|
|
13
13
|
# Middleman Gems
|
14
14
|
gem "middleman", ">= 4.0.0"
|
data/docs/bin/middleman
CHANGED
@@ -9,8 +9,9 @@
|
|
9
9
|
#
|
10
10
|
|
11
11
|
require "pathname"
|
12
|
-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path(
|
13
|
-
Pathname.new(__FILE__).realpath
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path(
|
13
|
+
"../../Gemfile", Pathname.new(__FILE__).realpath
|
14
|
+
)
|
14
15
|
|
15
16
|
require "rubygems"
|
16
17
|
require "bundler/setup"
|
data/lib/word_search/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: word_search
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- npezza93
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -286,7 +286,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
286
286
|
version: '0'
|
287
287
|
requirements: []
|
288
288
|
rubyforge_project:
|
289
|
-
rubygems_version: 2.6.
|
289
|
+
rubygems_version: 2.6.12
|
290
290
|
signing_key:
|
291
291
|
specification_version: 4
|
292
292
|
summary: Word Search Generator and Solver
|