sportweb 0.0.7 → 0.0.8
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/lib/sportweb/boot_with_bundler.rb +11 -0
- data/lib/sportweb/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 512b1e380531be800f44009c5f29e319c5f13a67
|
|
4
|
+
data.tar.gz: 350fe3e3704579923860779cc52bedb89f1636e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80ca03be440a48d0beb0a6816da53fea61514b5b3f4e1f2bc080f762bc88961e2bd568b93b5dc21ca23b0cf379fa06dfb5922a9c16fc2c60ac6568da2e644054
|
|
7
|
+
data.tar.gz: 7b7f07752505f07d69a4966cd9c66af82bbc6dc100e27d0a3d40d537fe96d809ab56c3a1305287e8fef45b5d7d10a1b7ba4a03d4776f0a730579311afddc401d
|
|
@@ -55,6 +55,17 @@ puts '[boot] before Bundler.setup'
|
|
|
55
55
|
Bundler.setup
|
|
56
56
|
puts '[boot] after Bundler.setup'
|
|
57
57
|
|
|
58
|
+
|
|
59
|
+
unless File.exist?( "./Gemfile")
|
|
60
|
+
## if using built-in Gemfile shipping with gems
|
|
61
|
+
## auto-add sportweb/lib (that, this gem) to load path
|
|
62
|
+
## note: built-in Gemfile excludes (does NOT include) sportweb
|
|
63
|
+
|
|
64
|
+
puts "[boot] adding #\{SportWeb.root}/lib to load path #{SportWeb.root}/lib"
|
|
65
|
+
$:.unshift "#{SportWeb.root}/lib"
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
|
|
58
69
|
puts "load_path after:"
|
|
59
70
|
pp $:
|
|
60
71
|
|
data/lib/sportweb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sportweb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gerald Bauer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionmailer
|