starting_blocks 0.0.29 → 0.0.30
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/sb +6 -18
- data/lib/starting_blocks/version.rb +1 -1
- data/starting_blocks.gemspec +0 -1
- metadata +4 -4
data/bin/sb
CHANGED
@@ -7,25 +7,13 @@ options = {}
|
|
7
7
|
def display value
|
8
8
|
end
|
9
9
|
|
10
|
-
if ARGV.include? '--blinky'
|
11
|
-
|
12
|
-
end
|
13
|
-
|
14
|
-
if ARGV.include? '--growl'
|
15
|
-
require 'starting_blocks-growl'
|
16
|
-
end
|
17
|
-
|
18
|
-
if ARGV.include? '--verbose'
|
19
|
-
options[:verbose] = true
|
20
|
-
end
|
21
|
-
|
22
|
-
if ARGV.include? '--no-vendor'
|
23
|
-
options[:no_vendor] = true
|
24
|
-
end
|
10
|
+
require 'starting_blocks-blinky' if ARGV.include? '--blinky'
|
11
|
+
require 'starting_blocks-growl' if ARGV.include? '--growl'
|
25
12
|
|
26
|
-
|
27
|
-
|
28
|
-
|
13
|
+
options[:verbose] = ARGV.include? '--verbose'
|
14
|
+
options[:no_vendor] = ARGV.include?('--vendor') == false
|
15
|
+
options[:use_bundler] = Dir['Gemfile'].count > 0
|
16
|
+
raise options.inspect
|
29
17
|
|
30
18
|
def run_all_specs options
|
31
19
|
files = ['**/*_spec.rb*', '**/*_test.rb*', '**/test_*.rb*'].map do |d|
|
data/starting_blocks.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: starting_blocks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.30
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -148,7 +148,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
148
148
|
version: '0'
|
149
149
|
segments:
|
150
150
|
- 0
|
151
|
-
hash:
|
151
|
+
hash: -4170713173812812278
|
152
152
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
153
153
|
none: false
|
154
154
|
requirements:
|
@@ -157,10 +157,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
157
157
|
version: '0'
|
158
158
|
segments:
|
159
159
|
- 0
|
160
|
-
hash:
|
160
|
+
hash: -4170713173812812278
|
161
161
|
requirements: []
|
162
162
|
rubyforge_project:
|
163
|
-
rubygems_version: 1.8.
|
163
|
+
rubygems_version: 1.8.24
|
164
164
|
signing_key:
|
165
165
|
specification_version: 3
|
166
166
|
summary: One command to run all tests, test watcher, etc.
|