respec 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dfad27bdd03eab8d26196cec1c56ab386f313fb1
4
- data.tar.gz: 6e6a4223f0caa56a7233fcc97816f720d0710268
3
+ metadata.gz: 56354a86449a765dc844d9707fe125b4842668df
4
+ data.tar.gz: 4e80d78dfa8278f5d3135f52b07df5f40e863f05
5
5
  SHA512:
6
- metadata.gz: 7e139c64ecb48d92d2d44bd37be6c13d25cdf3a5e4bcac1f664a0b7e1c5e78990c2539883807a972a4ebe437545b86a054d7e7a3c40473d17f7175e05bbf84f7
7
- data.tar.gz: fdf8cd1a0ad2d9713a15a6020a296956e822b5c9750f1f024aaa73178848a57ed3bdd1945fae847177f476e266aa8927b89a203c758eda9087429e9514f7a4f5
6
+ metadata.gz: 406e2a66ccfc426c25eac273689145d1e9c1a092561f431852ea2b3cda698fda7a549d038bcb4e6f9411223c2611144bc193f6c4b6276c5d325d244bbac685f2
7
+ data.tar.gz: 57add028ef932511b8036f1320f45137efd27e7303b1cac458a6087262fdbcb69a366cae2f8fcc5b794ccca60fc90d5c443b5ede5b96dc11c966be428a6732a4
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.8.1 2015-02-14
2
+
3
+ * Escape printed rspec command.
4
+
1
5
  == 0.8.0 2015-02-02
2
6
 
3
7
  * Support RSpec 3.
data/bin/respec CHANGED
@@ -3,11 +3,12 @@
3
3
  ROOT = File.expand_path('..', File.dirname(__FILE__))
4
4
  $:.unshift "#{ROOT}/lib"
5
5
  require 'respec'
6
+ require 'shellwords'
6
7
 
7
8
  app = Respec::App.new(*ARGV)
8
9
  if app.help_only?
9
10
  STDERR.puts app.help
10
11
  else
11
- STDERR.puts "++ #{app.command.join(' ')}"
12
+ STDERR.puts "++ #{app.command.shelljoin}"
12
13
  exec *app.command
13
14
  end
@@ -1,5 +1,5 @@
1
1
  module Respec
2
- VERSION = [0, 8, 0]
2
+ VERSION = [0, 8, 1]
3
3
 
4
4
  class << VERSION
5
5
  include Comparable
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: respec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - George Ogata
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-02 00:00:00.000000000 Z
11
+ date: 2015-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec