gem_skeleton 0.0.9 → 0.1.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.
data/gem_skeleton.gemspec
CHANGED
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
require 'simplecov'
|
|
2
2
|
SimpleCov.start do
|
|
3
|
-
SimpleCov.
|
|
4
|
-
|
|
5
|
-
SimpleCov.result.format!
|
|
6
|
-
if SimpleCov.result.covered_percent != threshold
|
|
7
|
-
actual_coverage = SimpleCov.result.covered_percent
|
|
8
|
-
puts "The coverage is #{actual_coverage}%. It has to be 100%"
|
|
9
|
-
exit 1
|
|
10
|
-
end
|
|
11
|
-
end
|
|
3
|
+
SimpleCov.refuse_coverage_drop
|
|
4
|
+
SimpleCov.minimum_coverage 100
|
|
12
5
|
end
|
|
6
|
+
|
|
13
7
|
require 'spork'
|
|
14
8
|
require 'guard/spork'
|
|
15
9
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gem_skeleton
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-10-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: thor
|
|
@@ -85,3 +85,4 @@ specification_version: 3
|
|
|
85
85
|
summary: The command copies part of bundle gem code and add rspec and rvmrc support
|
|
86
86
|
into the gem skeleton
|
|
87
87
|
test_files: []
|
|
88
|
+
has_rdoc:
|