mpcat 1.1.0 → 1.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e1d9f2fae16e782005a735a23ae28f853f5eec60
4
- data.tar.gz: 39520db5a2177a5e8327b3e90ec9670eaa12a49a
3
+ metadata.gz: f42c34aec64cce950075a62cba41fe09d86d27c3
4
+ data.tar.gz: e7bc25503be8b8c40b5b8470790b20bb6155338a
5
5
  SHA512:
6
- metadata.gz: 55932a594b8fc3cd7d7534c38a2645bcd08f89c7e0ee74b7dcbcab0b2eddfef8bc97413ddbd537e05eacc1111f0c5ac203a4b8b4f1fbed28cf9277b551ab518d
7
- data.tar.gz: 892b80df86d3a5722f4a46a3058b1902cb1e332b6274863760adf322a1ebc397f290b350043b1c95343995188f18a9aaf9c356bd1fb6a6c37d6b3bdaf7ec47bc
6
+ metadata.gz: a443a88015043458be81f706382b0a4e65c1ab165ca2e62e242d8844c646c6ecd68053c5e86c8166826c53810bcffbf641ce4a5809bcabe2aaccf6dcd0a8b872
7
+ data.tar.gz: e57c9b6eb202f96b08fdb06767ef9f665eb94a6cc8eb0414904312f7f8e604def3e867dc57a585114672c535d7e76304d479c1ca8ad7c7491b8d32a9fef76958
@@ -0,0 +1,14 @@
1
+ # editorconfig.org
2
+
3
+ root = true
4
+
5
+ [*]
6
+ indent_style = tab
7
+ indent_size = 4
8
+ end_of_line = lf
9
+ charset = utf-8
10
+ trim_trailing_whitespace = false
11
+ insert_final_newline = true
12
+
13
+ [*.yml]
14
+ indent_style = space
data/.gitignore CHANGED
@@ -1,4 +1,4 @@
1
1
  /.bundle/
2
2
  .setup
3
3
  Gemfile.lock
4
- /releases/
4
+ /releases/
@@ -4,8 +4,10 @@ rvm:
4
4
  - 2.0
5
5
  - 2.1
6
6
  - 2.2
7
+ - 2.3
8
+ - ruby-head
7
9
  sudo: required
8
- before_install:
10
+ before_install:
9
11
  - gem update --system
10
12
  - gem install bundler -v '~>1.11'
11
13
  - bundler --version
@@ -18,4 +20,4 @@ script:
18
20
  - make test
19
21
  - cd
20
22
  - which -a mpcat
21
- - mpcat --version
23
+ - mpcat --version
data/Makefile CHANGED
@@ -5,4 +5,6 @@ include Makefile.common
5
5
 
6
6
  .PHONY: test
7
7
  test:
8
- RUBYOPT=-w $(BUNDLER) exec ./bin/mpcat tests/test1.mp
8
+ RUBYOPT=-w $(BUNDLER) exec ./bin/mpcat ./test/test1.mp > ./test/test1.mp.yml
9
+ diff ./test/test1.mp.yml ./test/test1.yml
10
+ rm -f ./test/test1.mp.yml
@@ -1,16 +1,17 @@
1
1
 
2
2
  # Ruby Common Big
3
- # 2015-12-21
3
+ # 2016-05-20
4
4
 
5
5
  MV = mv -nv
6
- RM = rm -rf
6
+ RM = rm -rfd
7
7
  MKDIR = mkdir -p
8
+ CHMOD = chmod
8
9
  BUNDLER = bundle
9
10
  BUNDLER_OPTIONS = --jobs=5 --retry=3
10
11
  GEMSPEC_FILE = $(GEM_NAME).gemspec
11
12
 
12
- .PHONY: all $(ALL_TARGETS_EXT)
13
- all: setup
13
+ .PHONY: all
14
+ all: setup $(ALL_TARGETS_EXT)
14
15
 
15
16
  .PHONY: setup
16
17
  setup: .setup
@@ -35,9 +36,7 @@ update:
35
36
 
36
37
  .PHONY: clean
37
38
  clean:
38
- $(RM) .bundle
39
- $(RM) .setup
40
- $(RM) Gemfile.lock
39
+ $(RM) .bundle .setup Gemfile.lock
41
40
 
42
41
  .PHONY: release
43
42
  release: | releases
@@ -51,3 +50,7 @@ release: | releases
51
50
 
52
51
  releases:
53
52
  $(MKDIR) $@
53
+
54
+ tmp:
55
+ $(MKDIR) $@
56
+ $(CHMOD) u=rwx,go-rwx $@
data/README.md CHANGED
@@ -13,7 +13,7 @@ https://rubygems.org/gems/mpcat
13
13
 
14
14
  or via Gemfile:
15
15
 
16
- gem 'mpcat', '~>1.0'
16
+ gem 'mpcat', '~>1.2'
17
17
 
18
18
  ## Project Links
19
19
 
@@ -26,7 +26,8 @@ or via Gemfile:
26
26
  - [YAML](http://yaml.org/)
27
27
 
28
28
  ## License
29
- Copyright (C) 2015 Christian Mayer <http://fox21.at>
29
+
30
+ Copyright (C) 2015 Christian Mayer <https://fox21.at>
30
31
 
31
32
  This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
32
33
 
@@ -1,6 +1,6 @@
1
1
 
2
2
  module MPCat
3
- VERSION = '1.1.0'
4
- DATE = '2015-12-21'
3
+ VERSION = '1.2.0'
4
+ DATE = '2016-09-12'
5
5
  HOMEPAGE = 'https://github.com/TheFox/mpcat'
6
6
  end
@@ -23,5 +23,5 @@ Gem::Specification.new do |spec|
23
23
  spec.require_paths = ['lib']
24
24
  spec.required_ruby_version = '>=1.9.0'
25
25
 
26
- spec.add_dependency 'msgpack', '~>0.7'
26
+ spec.add_dependency 'msgpack', '~>1.0'
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mpcat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Mayer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-21 00:00:00.000000000 Z
11
+ date: 2016-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: msgpack
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: '1.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
- version: '0.7'
26
+ version: '1.0'
27
27
  description: Pretty print for MessagePack files.
28
28
  email: christian@fox21.at
29
29
  executables:
@@ -31,6 +31,7 @@ executables:
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
+ - ".editorconfig"
34
35
  - ".gitignore"
35
36
  - ".travis.yml"
36
37
  - Gemfile
@@ -42,7 +43,6 @@ files:
42
43
  - lib/mpcat/version.rb
43
44
  - mpcat.gemspec
44
45
  - mpcat.sublime-project
45
- - tests/test1.mp
46
46
  homepage: https://github.com/TheFox/mpcat
47
47
  licenses:
48
48
  - GPL-3.0
@@ -63,9 +63,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
63
63
  version: '0'
64
64
  requirements: []
65
65
  rubyforge_project:
66
- rubygems_version: 2.4.7
66
+ rubygems_version: 2.5.1
67
67
  signing_key:
68
68
  specification_version: 4
69
69
  summary: MessagePack Cat
70
70
  test_files: []
71
- has_rdoc:
@@ -1 +0,0 @@
1
- ��h1��a�b�c�*