parity 2.0.1 → 2.1.0

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: 4563996b76ceae2712bcd8727485268dac1a02d2
4
- data.tar.gz: 272de341014bfc2f6ffd06b9be6878348fa55b2e
3
+ metadata.gz: ceb019ad2c690a6ba32f87972f1451c3cb045919
4
+ data.tar.gz: b4895f2489581e5e38ec09c8b060a53028e6e1fe
5
5
  SHA512:
6
- metadata.gz: 55fecf87883c69f68ef2f00a43315e9f7a5b585a807c697557997423a4fbc591a0650c7ec5d9883b91fc4d114cf894dc53b21fc55777cdc416a8fc61c36fdcb8
7
- data.tar.gz: ed128c0f9e4d2dd0e9d2652f9e4230ba54834e6d705bb94828571e764f725c40df8db326416a272c23ffdb3497da94378a8464e52c33b9c9a41bf4db671cffaf
6
+ metadata.gz: 5e1ee285bbc6264ab655ae23eed8a96422df8e009dcf1e1fa5ab9fbb34d57d151aeb5fa7bfa895d29028d3001d1342e8e6dae4e6726f9bb026d3a5b9b4167dab
7
+ data.tar.gz: e890c170dcae62e81fa4f296f21d7433708d56d06a0e2f16ca908a2374c90d812d14dfc5aa98d7e953a835a2616a95f604dc6786c91947f317709e514413f253
data/README.md CHANGED
@@ -150,7 +150,7 @@ See guidelines in [`RELEASING.md`](RELEASING.md) for details
150
150
  License
151
151
  -------
152
152
 
153
- Parity is © 2013-2016 thoughtbot, inc.
153
+ Parity is © 2013-2017 thoughtbot, inc.
154
154
  It is free software,
155
155
  and may be redistributed under the terms specified in the [LICENSE] file.
156
156
 
@@ -159,7 +159,7 @@ and may be redistributed under the terms specified in the [LICENSE] file.
159
159
  About thoughtbot
160
160
  ----------------
161
161
 
162
- ![thoughtbot](https://thoughtbot.com/logo.png)
162
+ ![thoughtbot](http://presskit.thoughtbot.com/images/thoughtbot-logo-for-readmes.svg)
163
163
 
164
164
  Parity is maintained and funded by thoughtbot, inc.
165
165
  The names and logos for thoughtbot are trademarks of thoughtbot, inc.
data/bin/development CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require File.join(File.dirname(__FILE__), '..', 'lib', 'parity')
3
+ $LOAD_PATH.unshift File.expand_path(File.join("..", "..", "lib"), __FILE__)
4
+ require "parity"
4
5
 
5
6
  if ARGV.empty?
6
7
  puts Parity::Usage.new
data/bin/production CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require File.join(File.dirname(__FILE__), '..', 'lib', 'parity')
3
+ $LOAD_PATH.unshift File.expand_path(File.join("..", "..", "lib"), __FILE__)
4
+ require "parity"
4
5
 
5
6
  if ARGV.empty?
6
7
  puts Parity::Usage.new
data/bin/staging CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require File.join(File.dirname(__FILE__), '..', 'lib', 'parity')
3
+ $LOAD_PATH.unshift File.expand_path(File.join("..", "..", "lib"), __FILE__)
4
+ require "parity"
4
5
 
5
6
  if ARGV.empty?
6
7
  puts Parity::Usage.new
@@ -80,7 +80,7 @@ module Parity
80
80
  end
81
81
 
82
82
  def additional_restore_arguments
83
- (arguments.drop(1) + [restore_confirmation_argument]).
83
+ (arguments.drop(1) - ["--force"] + [restore_confirmation_argument]).
84
84
  compact.
85
85
  join(" ")
86
86
  end
@@ -1,3 +1,3 @@
1
1
  module Parity
2
- VERSION = "2.0.1".freeze
2
+ VERSION = "2.1.0".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parity
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Croak
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-15 00:00:00.000000000 Z
12
+ date: 2017-03-24 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: |2
15
15
  Development/staging/production parity makes it easier for
@@ -52,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
52
52
  version: '0'
53
53
  requirements: []
54
54
  rubyforge_project:
55
- rubygems_version: 2.4.5
55
+ rubygems_version: 2.6.8
56
56
  signing_key:
57
57
  specification_version: 4
58
58
  summary: Shell commands for development, staging, and production parity.