mate 1.1.3 → 1.1.4
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.
- data/README.markdown +1 -1
- data/VERSION +1 -1
- data/mate.gemspec +10 -10
- metadata +5 -5
data/README.markdown
CHANGED
|
@@ -4,7 +4,7 @@ TextMate project builder using git ignores for exclusions
|
|
|
4
4
|
|
|
5
5
|
You can add `alias mate='tm'` to your `.profile`, `.bash_profile` …
|
|
6
6
|
|
|
7
|
-
When `tm` command (or `mate` if aliased) is called with one or more paths and any of them is a directory, than project is created in `~/.tmprojs/` and opened. Its file and folder filters are built based on all types of git ignores (global, `.gitignore` and `.git/info/exclude`), also `.git` folder and certain files (images, archives, media files, logs and some other binary files) are filtered.
|
|
7
|
+
When `tm` command (or `mate` if aliased) is called with one or more paths and any of them is a directory, than project is created in `~/.tmprojs/` and opened. Its file and folder filters are built based on all types of git ignores (global, `.gitignore` and `.git/info/exclude`) and special `.tmignore` which works like other ignore files for project but doesn't affect git itself, also `.git` folder and certain files (images, archives, media files, logs and some other binary files) are filtered.
|
|
8
8
|
|
|
9
9
|
## Copyright
|
|
10
10
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.4
|
data/mate.gemspec
CHANGED
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name =
|
|
8
|
-
s.version = "1.1.
|
|
7
|
+
s.name = "mate"
|
|
8
|
+
s.version = "1.1.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = [
|
|
12
|
-
s.date =
|
|
13
|
-
s.executables = [
|
|
11
|
+
s.authors = ["Ivan Kuchin"]
|
|
12
|
+
s.date = "2011-11-27"
|
|
13
|
+
s.executables = ["tm"]
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"LICENSE.txt",
|
|
16
16
|
"README.markdown"
|
|
@@ -27,11 +27,11 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
"lib/mate/tmproj/ignores.rb",
|
|
28
28
|
"mate.gemspec"
|
|
29
29
|
]
|
|
30
|
-
s.homepage =
|
|
31
|
-
s.licenses = [
|
|
32
|
-
s.require_paths = [
|
|
33
|
-
s.rubygems_version =
|
|
34
|
-
s.summary =
|
|
30
|
+
s.homepage = "http://github.com/toy/mate"
|
|
31
|
+
s.licenses = ["MIT"]
|
|
32
|
+
s.require_paths = ["lib"]
|
|
33
|
+
s.rubygems_version = "1.8.11"
|
|
34
|
+
s.summary = "TextMate project builder using git ignores for exclusions"
|
|
35
35
|
|
|
36
36
|
if s.respond_to? :specification_version then
|
|
37
37
|
s.specification_version = 3
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 1.1.
|
|
9
|
+
- 4
|
|
10
|
+
version: 1.1.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Ivan Kuchin
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-11-27 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: plist
|
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
110
|
requirements: []
|
|
111
111
|
|
|
112
112
|
rubyforge_project:
|
|
113
|
-
rubygems_version: 1.8.
|
|
113
|
+
rubygems_version: 1.8.11
|
|
114
114
|
signing_key:
|
|
115
115
|
specification_version: 3
|
|
116
116
|
summary: TextMate project builder using git ignores for exclusions
|