blinkenstein 0.1.4 → 0.1.5
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.
- data/Gemfile.lock +1 -1
- data/bin/blinkenstein +5 -13
- data/lib/blinkenstein.rb +2 -0
- data/lib/blinkenstein/version.rb +1 -1
- metadata +1 -1
data/Gemfile.lock
CHANGED
data/bin/blinkenstein
CHANGED
@@ -1,16 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
|
4
|
-
#
|
5
|
-
# The application 'blinkenstein' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
2
|
+
lib = File.expand_path('../../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
8
4
|
|
9
|
-
require
|
10
|
-
|
11
|
-
Pathname.new(__FILE__).realpath)
|
5
|
+
require "bundler/setup"
|
6
|
+
require "blinkenstein"
|
12
7
|
|
13
|
-
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('blinkenstein', 'blinkenstein')
|
8
|
+
Blinkenstein::SupervisionGroup.run
|
data/lib/blinkenstein.rb
CHANGED
data/lib/blinkenstein/version.rb
CHANGED