ichiban 1.2.2 → 1.2.3
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/bin/ichiban +10 -8
- data/lib/ichiban/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5c0d4eacb550103608173411c2d58f3efaa9f5e
|
|
4
|
+
data.tar.gz: 7aeecd5c26d6eb6066e983f9f6237ac1b8fcab07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9bb87f05b4156797b0d36df4033e1003d0868a94bab4c25ff82436a0e7c9e74e59e3d85b06af3f9f4cb88598a3098979907fd96fad7e2d41471a61026ff9232
|
|
7
|
+
data.tar.gz: db286ccf910880907d63961d40a93636c6f3b15b1c3d800ed93b206da66525e87165be758c55f0a4dd45c9035263b9b1a944cc0b77596935fa059a63fa5ca042
|
data/bin/ichiban
CHANGED
|
@@ -5,17 +5,19 @@
|
|
|
5
5
|
# This will prevent your project's Gemfile from being used! There's really no way to avoid
|
|
6
6
|
# that, because using the Gemfile would cause the installed version of Ichiban to be used.
|
|
7
7
|
|
|
8
|
-
require 'rubygems'
|
|
9
8
|
if ENV['DEV'] == '1'
|
|
10
9
|
puts "\n"
|
|
11
|
-
puts '
|
|
12
|
-
puts 'Ichiban running in dev mode. Gemfile will be
|
|
13
|
-
puts '
|
|
10
|
+
puts '============================================================================'
|
|
11
|
+
puts 'Ichiban running in dev mode. Ichiban version in Gemfile will be overwritten.'
|
|
12
|
+
puts '============================================================================'
|
|
14
13
|
puts "\n"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
require '
|
|
14
|
+
|
|
15
|
+
$:.unshift File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
16
|
+
require 'ichiban'
|
|
18
17
|
end
|
|
19
|
-
|
|
18
|
+
|
|
19
|
+
require 'bundler/setup'
|
|
20
|
+
Bundler.require
|
|
21
|
+
|
|
20
22
|
|
|
21
23
|
Ichiban::Command.new(ARGV).run
|
data/lib/ichiban/version.rb
CHANGED