mate 2.0.2 → 2.1.0

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.
Files changed (6) hide show
  1. checksums.yaml +5 -13
  2. data/LICENSE.txt +1 -1
  3. data/README.markdown +1 -1
  4. data/bin/tm2 +1 -1
  5. data/mate.gemspec +1 -1
  6. metadata +8 -8
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MWEzYjUwOTI1ZTQ5NGZjNDQ0YmI5YmY3MWIwMWI2MGZmMGMzMjliYg==
5
- data.tar.gz: !binary |-
6
- YmE2NzQ4ZjBmODc3NjVmNzMxMGJjNmFiMjM0NzI0NmE5NTkzN2E0OA==
2
+ SHA1:
3
+ metadata.gz: 00cf83259f743f75cb806d8670085ae2f1d564f5
4
+ data.tar.gz: 2d18200151fbf74a7459163a6f76bfd16532a47d
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- M2M3YWViOTI0ZTBmOTE2ZjU3NTkwZGJjMDU1MDg3YmVmYjMwYTI3YzIxMzEx
10
- NWIwZDc0M2E4MjAzY2Y2MDg5N2YzZTMxNWFiZDUyZmQwOTg2NzMxOTI3MTky
11
- NzNmYzFmZjYwMzY5M2IwYjM2Y2Q4MDBmZjJlMzIxMTAyYmRiMjc=
12
- data.tar.gz: !binary |-
13
- NDA2OGQxYWM2ZmI2MTBkNGZlN2E1MWRkNDJkMjM2YzJhMjMxYjg5YjQwYzM2
14
- ZWNiODIxOTZlNzQ2OTgyM2NlYTAwZWE4M2JjYzIyNjJjN2NiMWRhN2U0ZDU5
15
- OThhYjFlNmFmNmU3ODhhMGUzNTQzZGZlNTc0N2Y5MDI0MzBhZGU=
6
+ metadata.gz: 5a3f6ed17f2aa6794e3e207e010dddef065a35de634d16facf238d0e8013ab42f374ae0933d9d06be55e153f76862e2cb62fc2c513e54e63230d98f310e3605d
7
+ data.tar.gz: 745584b3c59fc07e04505c45fbe65719b1d2176748a8ff1bbc366e1674dffca1dee62cc8a338e768d64580a2d2aae270e32c62cf2581fa8f3ea5db2193280da3
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2014 Ivan Kuchin
1
+ Copyright (c) 2010-2017 Ivan Kuchin
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.markdown CHANGED
@@ -8,4 +8,4 @@ When `tm` command (or `mate` if aliased) is called with one or more paths and an
8
8
 
9
9
  ## Copyright
10
10
 
11
- Copyright (c) 2010-2014 Ivan Kuchin. See LICENSE.txt for details.
11
+ Copyright (c) 2010-2017 Ivan Kuchin. See LICENSE.txt for details.
data/bin/tm2 CHANGED
@@ -4,7 +4,7 @@ require 'mate/bin'
4
4
  require 'mate/tm_properties'
5
5
 
6
6
  ARGV.each do |arg|
7
- if File.directory?(arg) && File.directory?(File.join(arg, '.git'))
7
+ if File.directory?(arg)
8
8
  Mate::TmProperties.new(arg).save
9
9
  end
10
10
  end
data/mate.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'mate'
5
- s.version = '2.0.2'
5
+ s.version = '2.1.0'
6
6
  s.summary = %q{TextMate project builder and TextMate 2 properties builder using git ignores for exclusions}
7
7
  s.homepage = "http://github.com/toy/#{s.name}"
8
8
  s.authors = ['Ivan Kuchin']
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mate
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Kuchin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-18 00:00:00.000000000 Z
11
+ date: 2017-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: plist
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  description:
@@ -32,7 +32,7 @@ executables:
32
32
  extensions: []
33
33
  extra_rdoc_files: []
34
34
  files:
35
- - .gitignore
35
+ - ".gitignore"
36
36
  - LICENSE.txt
37
37
  - README.markdown
38
38
  - bin/tm
@@ -53,17 +53,17 @@ require_paths:
53
53
  - lib
54
54
  required_ruby_version: !ruby/object:Gem::Requirement
55
55
  requirements:
56
- - - ! '>='
56
+ - - ">="
57
57
  - !ruby/object:Gem::Version
58
58
  version: '0'
59
59
  required_rubygems_version: !ruby/object:Gem::Requirement
60
60
  requirements:
61
- - - ! '>='
61
+ - - ">="
62
62
  - !ruby/object:Gem::Version
63
63
  version: '0'
64
64
  requirements: []
65
65
  rubyforge_project: mate
66
- rubygems_version: 2.1.11
66
+ rubygems_version: 2.6.14
67
67
  signing_key:
68
68
  specification_version: 4
69
69
  summary: TextMate project builder and TextMate 2 properties builder using git ignores