mate 1.0.2 → 1.0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.markdown +11 -0
  2. data/VERSION +1 -1
  3. data/mate.gemspec +3 -3
  4. metadata +5 -4
  5. data/README.rdoc +0 -11
data/README.markdown ADDED
@@ -0,0 +1,11 @@
1
+ # mate
2
+
3
+ TextMate project builder using git ignores for exclusions
4
+
5
+ You can add `alias mate='tm'` to your `.profile`, `.bash_profile` …
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.
8
+
9
+ ## Copyright
10
+
11
+ Copyright (c) 2010 Boba Fat. See LICENSE for details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.2.1
data/mate.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{mate}
8
- s.version = "1.0.2"
8
+ s.version = "1.0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Boba Fat"]
@@ -14,12 +14,12 @@ Gem::Specification.new do |s|
14
14
  s.executables = ["tm"]
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
- "README.rdoc"
17
+ "README.markdown"
18
18
  ]
19
19
  s.files = [
20
20
  ".gitignore",
21
21
  "LICENSE",
22
- "README.rdoc",
22
+ "README.markdown",
23
23
  "Rakefile",
24
24
  "VERSION",
25
25
  "bin/tm",
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mate
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 85
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - 2
10
- version: 1.0.2
10
+ - 1
11
+ version: 1.0.2.1
11
12
  platform: ruby
12
13
  authors:
13
14
  - Boba Fat
@@ -40,11 +41,11 @@ extensions: []
40
41
 
41
42
  extra_rdoc_files:
42
43
  - LICENSE
43
- - README.rdoc
44
+ - README.markdown
44
45
  files:
45
46
  - .gitignore
46
47
  - LICENSE
47
- - README.rdoc
48
+ - README.markdown
48
49
  - Rakefile
49
50
  - VERSION
50
51
  - bin/tm
data/README.rdoc DELETED
@@ -1,11 +0,0 @@
1
- = mate
2
-
3
- TextMate project builder using git ignores for exclusions
4
-
5
- You can add alias `mate='tm'` to your .profile, .bash_profile …
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.
8
-
9
- == Copyright
10
-
11
- Copyright (c) 2010 Boba Fat. See LICENSE for details.