right_develop 3.1.11 → 3.1.12
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/.travis.yml +3 -1
- data/CHANGELOG.md +4 -0
- data/VERSION +1 -1
- data/lib/right_develop/ci/rake_task.rb +6 -2
- data/right_develop.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 134ed247d39647a5f9b442ccaa6e8deb7b4380da
|
|
4
|
+
data.tar.gz: a8130137ba497b33cb32d987488160b6a7c75440
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 719c9067a3f8879b5df19ab338b34baf11abe77dbc21261e197529cb69e9c10c95e2276539a09924629ff870493cdf4c299201319366e4f127e25b93d554dae6
|
|
7
|
+
data.tar.gz: 3b10dc4a9727da0237e7b25aeb9e84a99df8e9bf1e55c1a4ed3c1bb3e9948d2189849ec540c09f3d1ed6c409dbec907ce5737a389828fc1078fc89c7175ee864
|
data/.travis.yml
CHANGED
|
@@ -6,5 +6,7 @@ rvm:
|
|
|
6
6
|
- 2.0.0
|
|
7
7
|
- 2.1.0
|
|
8
8
|
script:
|
|
9
|
-
- bundle exec rake ci:spec
|
|
9
|
+
- bundle exec rake ci:spec
|
|
10
|
+
- bundle exec rake ci:cucumber
|
|
11
|
+
- bundle exec rake coveralls:push
|
|
10
12
|
bundler_args: --without debugger development
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.12
|
|
@@ -170,7 +170,9 @@ module RightDevelop::CI
|
|
|
170
170
|
end
|
|
171
171
|
end
|
|
172
172
|
when nil
|
|
173
|
-
warn
|
|
173
|
+
# Gem not installed, do not warn. If someone is looking for this task and they don't find it, they will
|
|
174
|
+
# figure it out. This warning is misleading when running rake tasks in environments that don't require
|
|
175
|
+
# these tasks.
|
|
174
176
|
else
|
|
175
177
|
raise LoadError, "Cannot define RightDevelop ci:spec task: unsupported RSpec version #{ver}"
|
|
176
178
|
end
|
|
@@ -187,7 +189,9 @@ module RightDevelop::CI
|
|
|
187
189
|
end
|
|
188
190
|
task :cucumber => [:prep]
|
|
189
191
|
when nil
|
|
190
|
-
warn
|
|
192
|
+
# Gem not installed, do not warn. If someone is looking for this task and they don't find it, they will
|
|
193
|
+
# figure it out. This warning is misleading when running rake tasks in environments that don't require
|
|
194
|
+
# these tasks.
|
|
191
195
|
else
|
|
192
196
|
raise LoadError, "Cannot define RightDevelop ci:cucumber task: unsupported Cucumber version #{ver}"
|
|
193
197
|
end
|
data/right_develop.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: right_develop 3.1.
|
|
5
|
+
# stub: right_develop 3.1.12 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "right_develop"
|
|
9
|
-
s.version = "3.1.
|
|
9
|
+
s.version = "3.1.12"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Tony Spataro"]
|
|
14
|
-
s.date = "
|
|
14
|
+
s.date = "2015-06-26"
|
|
15
15
|
s.description = "A toolkit of development tools created by RightScale."
|
|
16
16
|
s.email = "support@rightscale.com"
|
|
17
17
|
s.executables = ["right_develop"]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: right_develop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tony Spataro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-06-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: right_support
|