travis 1.8.7.travis.808.4 → 1.8.7.travis.809.4
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/Rakefile +3 -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: 61decf026520c0b1a7087eccba3e6e511d6bd97f
|
|
4
|
+
data.tar.gz: e6b7b14d0a23ad46557ab9477e7cadd600e81d86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 320b7942bb5978f3759e0ce522cc5cec5df816ccf74d375edb97a66a09f1c95cfe9d28ffb0e1432d542c81a34666de4587b1946d33dfaae06bc558bc959b7441
|
|
7
|
+
data.tar.gz: bd647efb6755ea37e538a9173663f3503f1783474f15d64028a87207273059b3c884ae3369e3fbb0b9c6fdbad09c884f3beb5a59e655a985b94647e75c377c0c
|
data/Rakefile
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
|
|
3
3
|
windows = RUBY_PLATFORM =~ /mswin|mingw/
|
|
4
4
|
|
|
5
|
+
require 'bundler/gem_tasks'
|
|
6
|
+
|
|
5
7
|
desc "run specs"
|
|
6
8
|
task(:spec) { ruby "-S rspec spec#{" -c" unless windows}" }
|
|
7
9
|
|
|
@@ -60,4 +62,4 @@ task 'README.md' => :update
|
|
|
60
62
|
task :gemspec => :update
|
|
61
63
|
task :default => :spec
|
|
62
64
|
task :default => :gemspec unless windows or RUBY_VERSION < '2.0'
|
|
63
|
-
task :test => :spec
|
|
65
|
+
task :test => :spec
|