right_develop 3.1.5 → 3.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e9286329a158de611837ad668e86c9d5bc18844d
4
- data.tar.gz: c9252d7708340756f525768cac9e55479e7bd3b4
3
+ metadata.gz: fee0da012374204d93303ff6468e27620028f7da
4
+ data.tar.gz: adca77c557645c07fb2bd8559e275a7074732bf5
5
5
  SHA512:
6
- metadata.gz: c3e338cdc799e419ac89c9b4073db15a98fa05f0fdd91293160e7b8db48758a0ab90f951567cc854a89c7e6b2a75f06633480c2d23c2e358a00133970acdc543
7
- data.tar.gz: 62e5f6629ec7d14184832b6bf33d5f84633f34ccc89d307d77b0678b2b511b1c68529058355a555c7b45a48dfa5381f94d6493fc9d4bdee3330e33389faf2cd1
6
+ metadata.gz: 2e2f2521d7605b8bb6124c1219cc8ed0c0094e304638bba625205c5ab8378ba3eb362388451d5182a353a54185f4d08536f506529b230fd0c79b512f4e60fb0c
7
+ data.tar.gz: 10897ab12760713813d8205c40675d7f732c6a3e96f21a6e3e9912b84d8790b36d694b243319a86167f919ff56cdf8f830a0bee79102d4be9d5c85f965b4cd00
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.5
1
+ 3.1.6
data/bin/right_develop CHANGED
@@ -1,12 +1,25 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
+ # What does this do? If you invoke this binary directly (e.g. from the RightDevelop git repository),
4
+ # this ensures that RightDevelop will be loaded from your local disk, and not from any installed
5
+ # RubyGems. The binary can therefore be used to play with in-development commands.
6
+ #
7
+ # Note that this trick depends on RubyGems NOT being activated at the moment the binary is parsed,
8
+ # i.e. it will not work correctly if you "bundle exec bin/right_develop".
9
+ #
10
+ # Usage:
11
+ # bin/right_develop <whatever> # note no 'bundle exec' !
12
+ if !defined?(Gem) && File.directory?(File.expand_path('../../.git', __FILE__))
13
+ $: << File.expand_path('../../lib', __FILE__)
14
+ require 'rubygems'
15
+ end
16
+
3
17
  unless Gem.respond_to?(:latest_spec_for)
4
18
  fail 'right_develop command line tools require rubygems v1.8+'
5
19
  end
6
20
 
7
- require "trollop"
8
-
9
- require "right_develop"
21
+ require 'trollop'
22
+ require 'right_develop'
10
23
 
11
24
  gemspec = Gem.latest_spec_for("right_develop")
12
25
 
@@ -4,4 +4,4 @@ module RightDevelop
4
4
  end
5
5
 
6
6
  require 'right_develop/commands/git'
7
- require 'right_develop/commands/server'
7
+ require 'right_develop/commands/server' unless RUBY_VERSION =~ /^1.8/
@@ -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 ruby lib
5
+ # stub: right_develop 3.1.6 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "right_develop"
9
- s.version = "3.1.5"
9
+ s.version = "3.1.6"
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 = "2014-10-10"
14
+ s.date = "2014-10-21"
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"]
@@ -81,7 +81,7 @@ Gem::Specification.new do |s|
81
81
  ]
82
82
  s.homepage = "https://github.com/rightscale/right_develop"
83
83
  s.licenses = ["MIT"]
84
- s.rubygems_version = "2.2.2"
84
+ s.rubygems_version = "2.2.0"
85
85
  s.summary = "Reusable dev & test code."
86
86
 
87
87
  if s.respond_to? :specification_version then
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.5
4
+ version: 3.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Spataro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-13 00:00:00.000000000 Z
11
+ date: 2014-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: right_support
@@ -249,7 +249,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
249
249
  version: '0'
250
250
  requirements: []
251
251
  rubyforge_project:
252
- rubygems_version: 2.2.2
252
+ rubygems_version: 2.2.0
253
253
  signing_key:
254
254
  specification_version: 4
255
255
  summary: Reusable dev & test code.