git-ready 0.8.10 → 0.8.11

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: f555541f19726bbe6119204f1f094a79a72adb03
4
- data.tar.gz: ab625a112f12c7875212f731a8972482c5286afd
3
+ metadata.gz: 870c39dca4cd4196dfbd0dfe4d49b4d729310aca
4
+ data.tar.gz: 30c00a44f60cae18d54b713bd6ee80c9222ad145
5
5
  SHA512:
6
- metadata.gz: 34134013e648ca94f535ac4d60967e3a42a1e06fa80d176dff357806444c793d20d9581688797360f796a9cb452dc459e4507f52d1cde70ed8091c352bef428f
7
- data.tar.gz: 05759e13b688a495698600aaa425a1aefc735bedc1da1f0c536bafedf4da4400e35d03b28ba6d9e0d3baa9894dea5f91adc7700b69488d92542c28431f200396
6
+ metadata.gz: 92d75ef3c320c6cac267eacba952922672010787a0c4894d432873fc7ce51a80ac41ba1ede6389c691040926847f18b9e9ac5d266b3a98db7130ccb405e7a01b
7
+ data.tar.gz: 0e1d6d755a98e6b06d4df9a6271a146e323a19267b2c67e951d705e4a6249a284ffcc5d96560e08eca5720bdacadfd7cb756588915d2c9d9c30b83016c153788
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.10
1
+ 0.8.11
@@ -4,7 +4,6 @@ require 'git-ready'
4
4
  require 'terminal-announce'
5
5
 
6
6
  if ARGV.empty? || %w(-h --help help).include?(ARGV.first)
7
- Announce.failure 'Missing an organization to git-ready with.' if ARGV.empty?
8
7
  Announce.info 'Syntax: git-ready <organization>'
9
8
  abort
10
9
  end
@@ -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: git-ready 0.8.10 ruby lib
5
+ # stub: git-ready 0.8.11 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "git-ready"
9
- s.version = "0.8.10"
9
+ s.version = "0.8.11"
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 = ["Chris Olstrom"]
14
- s.date = "2015-07-07"
14
+ s.date = "2015-07-08"
15
15
  s.description = "git-ready gets you ready to work with an established team that already uses GitHub."
16
16
  s.email = "chris@olstrom.com"
17
17
  s.executables = ["git-ready"]
@@ -18,7 +18,7 @@ module GitHub
18
18
  end
19
19
  end
20
20
 
21
- Contract nil => Octokit::Client
21
+ Contract None => Octokit::Client
22
22
  def self.api
23
23
  @api ||= Octokit::Client.new access_token: Settings.github_access_token, auto_paginate: true
24
24
  end
@@ -18,6 +18,8 @@ module Workspace
18
18
  repository.remotes.set_url 'upstream', upstream_url
19
19
  rescue Rugged::RepositoryError
20
20
  Announce.failure "Failed to configure remotes #{origin_url} and #{upstream_url} for #{path}"
21
+ rescue Rugged::OSError
22
+ Announce.warning "#{path} does not exist"
21
23
  end
22
24
 
23
25
  Contract String, String => Any
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-ready
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.10
4
+ version: 0.8.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Olstrom
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-07 00:00:00.000000000 Z
11
+ date: 2015-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: contracts