dxruby_tiled 0.1.0 → 1.0.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.
@@ -1,5 +1,5 @@
1
1
  module DXRuby
2
2
  module Tiled
3
- VERSION = '0.1.0'
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dxruby_tiled
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
- - nodai2h-ITC
7
+ - nodai2hITC
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-02-24 00:00:00.000000000 Z
11
+ date: 2018-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dxruby
@@ -16,28 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: json
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
19
+ version: 1.4.1
34
20
  type: :runtime
35
21
  prerelease: false
36
22
  version_requirements: !ruby/object:Gem::Requirement
37
23
  requirements:
38
24
  - - ">="
39
25
  - !ruby/object:Gem::Version
40
- version: '0'
26
+ version: 1.4.1
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: bundler
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -66,15 +52,29 @@ dependencies:
66
52
  - - "~>"
67
53
  - !ruby/object:Gem::Version
68
54
  version: '10.0'
69
- description: Draw TiledMapEditor JSON data by using DXRuby.
70
- email:
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Draw TiledMapEditor data by using DXRuby.
70
+ email:
71
+ - nodai2h.itc@gmail.com
71
72
  executables: []
72
73
  extensions: []
73
74
  extra_rdoc_files: []
74
75
  files:
75
76
  - ".gitignore"
76
77
  - Gemfile
77
- - LICENSE
78
78
  - LICENSE.txt
79
79
  - README.ja.md
80
80
  - README.md
@@ -82,6 +82,7 @@ files:
82
82
  - dxruby_tiled.gemspec
83
83
  - examples/dxruby_tiled_test.rb
84
84
  - lib/dxruby_tiled.rb
85
+ - lib/dxruby_tiled/grouplayer.rb
85
86
  - lib/dxruby_tiled/imagelayer.rb
86
87
  - lib/dxruby_tiled/layer.rb
87
88
  - lib/dxruby_tiled/layer_hexagonal.rb
@@ -89,9 +90,13 @@ files:
89
90
  - lib/dxruby_tiled/layer_orthogonal.rb
90
91
  - lib/dxruby_tiled/layer_staggered.rb
91
92
  - lib/dxruby_tiled/map.rb
93
+ - lib/dxruby_tiled/object.rb
92
94
  - lib/dxruby_tiled/objectgroup.rb
95
+ - lib/dxruby_tiled/tile.rb
96
+ - lib/dxruby_tiled/tilelayer.rb
93
97
  - lib/dxruby_tiled/tileset.rb
94
98
  - lib/dxruby_tiled/tilesets.rb
99
+ - lib/dxruby_tiled/tmx_loader.rb
95
100
  - lib/dxruby_tiled/version.rb
96
101
  homepage: https://github.com/nodai2hITC/dxruby_tiled
97
102
  licenses:
@@ -113,8 +118,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
118
  version: '0'
114
119
  requirements: []
115
120
  rubyforge_project:
116
- rubygems_version: 2.6.10
121
+ rubygems_version: 2.6.12
117
122
  signing_key:
118
123
  specification_version: 4
119
- summary: Draw TiledMapEditor JSON data by using DXRuby.
124
+ summary: Draw TiledMapEditor data by using DXRuby.
120
125
  test_files: []
data/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2017 nodai2hITC
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.