git-ready 0.8.2 → 0.8.3
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/README.md +5 -0
- data/VERSION +1 -1
- data/git-ready.gemspec +2 -2
- data/lib/git-ready/interactive_setup.rb +1 -0
- data/lib/git-ready/settings.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae6f69d7e3611018b387a410f9e51671791c2990
|
|
4
|
+
data.tar.gz: d6d908c4f9b17b8441d81a3e6396787c851bfdfb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2f26dc3788f6a290021b0e9a05658aa2de39950e5f3b8f350e9bb10413fdbb2f6495b20b9572a13045fd04533076e9f565cebb6e16a3166c924276c2c5e94d9
|
|
7
|
+
data.tar.gz: b45c12b224a2aa327b651d07817232922d5effd617a860c466a5451310f2464e15beb09aaa87a07fcf5ad30bd15685c74b541cd9b37358e2794f5ce3e2766b6c
|
data/README.md
CHANGED
|
@@ -7,6 +7,11 @@ Installation
|
|
|
7
7
|
|
|
8
8
|
`gem install git-ready`
|
|
9
9
|
|
|
10
|
+
OSX Installation Issues?
|
|
11
|
+
------------------------
|
|
12
|
+
|
|
13
|
+
One of the gems used by git-ready ([Rugged](https://github.com/libgit2/rugged)), requires `cmake` to build. On OSX, this isn't installed by default, but can easily be resolved with `brew install cmake`.
|
|
14
|
+
|
|
10
15
|
Usage
|
|
11
16
|
-----
|
|
12
17
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.3
|
data/git-ready.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
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.
|
|
5
|
+
# stub: git-ready 0.8.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "git-ready"
|
|
9
|
-
s.version = "0.8.
|
|
9
|
+
s.version = "0.8.3"
|
|
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"]
|
data/lib/git-ready/settings.rb
CHANGED
|
@@ -11,7 +11,7 @@ class Settings < Settingslogic
|
|
|
11
11
|
config_paths = %w(/etc /usr/local/etc ~/.config .)
|
|
12
12
|
|
|
13
13
|
config_paths.each do |config_path|
|
|
14
|
-
config_file = File.expand_path "#{
|
|
14
|
+
config_file = File.expand_path "#{config_path}/git-ready.yaml"
|
|
15
15
|
source config_file if File.exist? config_file
|
|
16
16
|
end
|
|
17
17
|
|