mkgitignore 0.1.4 → 0.1.5
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 +6 -14
- data/README.md +2 -0
- data/bin/mkgitignore +5 -0
- data/lib/mkgitignore.rb +0 -7
- data/lib/mkgitignore/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
metadata.gz: !binary |-
|
|
9
|
-
ZmFiNjEzOWU2YTk3M2UwNGQ0OTM1MjU5YTgzZGYyM2Y3OGNiYjljNTdhMDhh
|
|
10
|
-
ZDczYjM0Y2E1YjEzNTJhMTk4MjQ0MWQzYThmM2YxZmFiZjMyNjdlZmQzYmVm
|
|
11
|
-
YWZhNTM2NDE3MDNjNmRjYjJlNDM1YTA2NWM3NDllMWI5NDIwODA=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
N2ZhMDg0ZTg3YzQ1YWZiYzQ2Njk1ZjY1MTk2MjRmM2UyYjI1OGQwNGRmNWE0
|
|
14
|
-
MWRmNzlhZWJhNDRiNjEzZTgzOWNjMWI2MDJlMDZmNzk5ZTBkZTZkNjM0NmU1
|
|
15
|
-
ZDI4NzhiZTc0N2YzMGEzODUxN2RiZDg1Njc1NzJjNmVkOWFmZmI=
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 348957078b3309cb1b569aab5a5c66f9de3b3241
|
|
4
|
+
data.tar.gz: b0238cb77f7db61bc5db24c77e0ac71fdfe86e65
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 238ae0ec2ed8a740c61d99fa51deba161b5047f22cc49de1d72d7d6dc8851983139c310b8238a894dd1e6f5984f121d6649db2ce1deeb1aa2fb49dd1af295a59
|
|
7
|
+
data.tar.gz: 49aba937522390140a04ed24eaf9a747a42fc892d06d07705bf43a27cb9713715c9ca9c97f22dd8bb8e28c7a55a719048f8e26d8921a4226e16630e7abbd8e44
|
data/README.md
CHANGED
data/bin/mkgitignore
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
require 'commander/import'
|
|
4
4
|
require 'mkgitignore'
|
|
5
|
+
require 'mkgitignore/commands/list'
|
|
6
|
+
require 'mkgitignore/commands/search'
|
|
7
|
+
require 'mkgitignore/commands/build'
|
|
8
|
+
require 'mkgitignore/commands/listbuild'
|
|
9
|
+
require 'mkgitignore/commands/append'
|
|
5
10
|
|
|
6
11
|
# Thanks @mattt
|
|
7
12
|
HighLine.track_eof = false # Fix for built-in Ruby
|
data/lib/mkgitignore.rb
CHANGED
|
@@ -166,10 +166,3 @@ module Mkgitignore
|
|
|
166
166
|
end
|
|
167
167
|
end
|
|
168
168
|
|
|
169
|
-
|
|
170
|
-
require 'mkgitignore/commands/list'
|
|
171
|
-
require 'mkgitignore/commands/search'
|
|
172
|
-
require 'mkgitignore/commands/build'
|
|
173
|
-
require 'mkgitignore/commands/listbuild'
|
|
174
|
-
require 'mkgitignore/commands/append'
|
|
175
|
-
|
data/lib/mkgitignore/version.rb
CHANGED
|
@@ -2,7 +2,7 @@ module Mkgitignore
|
|
|
2
2
|
AUTHOR = 'Keith Smiley'
|
|
3
3
|
WEBSITE = 'https://github.com/Keithbsmiley/mkgitignore'
|
|
4
4
|
EMAIL = 'keithbsmiley@gmail.com'
|
|
5
|
-
VERSION = '0.1.
|
|
5
|
+
VERSION = '0.1.5'
|
|
6
6
|
GITIGNORE_URL = 'https://api.github.com/repos/github/gitignore/contents/'
|
|
7
7
|
GITIGNORE_FILE_NAME = '.gitignore'
|
|
8
8
|
BACKUP_FILE_NAME = 'backup.gitignore'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mkgitignore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keith Smiley
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-02-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: commander
|
|
@@ -83,17 +83,17 @@ require_paths:
|
|
|
83
83
|
- lib
|
|
84
84
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
85
85
|
requirements:
|
|
86
|
-
- -
|
|
86
|
+
- - '>='
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
88
|
version: '0'
|
|
89
89
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
90
|
requirements:
|
|
91
|
-
- -
|
|
91
|
+
- - '>='
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
93
|
version: '0'
|
|
94
94
|
requirements: []
|
|
95
95
|
rubyforge_project:
|
|
96
|
-
rubygems_version: 2.0.
|
|
96
|
+
rubygems_version: 2.0.14
|
|
97
97
|
signing_key:
|
|
98
98
|
specification_version: 4
|
|
99
99
|
summary: Create gitignores from Github's templates
|