libtcod 0.0.8 → 0.0.9

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b0d89adfb1e6451549b1521185e2cf9650a0e490
4
+ data.tar.gz: 4543ae235a0459f5418c0f26364cb6f2ba607092
5
+ SHA512:
6
+ metadata.gz: 6c99ae4c6ce048693f651651a38ac105ae3de1106d1ed2ce35a15665d46cb36a12beb76c200f49457719061e2342c72b9d855166ceebd9bb2ef820256a22d48d
7
+ data.tar.gz: b84c686ab755839461744d098e64bb4c36503c59a47b18aab8a9a3050f03f55239253cb0f5c1968edac6f27f06a0192ae4f2a02c72d8950cc6995ab082f79f97
data/.gitignore CHANGED
File without changes
data/Gemfile CHANGED
File without changes
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # libtcod-ruby 0.0.8
1
+ # libtcod-ruby 0.0.9
2
2
 
3
3
  Ruby bindings for [libtcod 1.5.1](http://doryen.eptalys.net/libtcod/)
4
4
 
data/Rakefile CHANGED
File without changes
data/bin/oryx_tiles.png CHANGED
File without changes
File without changes
data/clib/amd64/libSDL.so CHANGED
File without changes
File without changes
data/clib/i686/libSDL.so CHANGED
File without changes
File without changes
File without changes
File without changes
data/lib/libtcod.rb CHANGED
File without changes
File without changes
File without changes
@@ -11,7 +11,7 @@ module TCOD
11
11
  @ptr = nil
12
12
  else
13
13
  @width = w
14
- @height = w
14
+ @height = h
15
15
  @ptr = TCOD.console_new(w, h)
16
16
  end
17
17
 
File without changes
data/lib/libtcod/map.rb CHANGED
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module TCOD
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
data/libtcod.gemspec CHANGED
File without changes
data/terminal.png CHANGED
File without changes
metadata CHANGED
@@ -1,46 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libtcod
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
5
- prerelease:
4
+ version: 0.0.9
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jaiden Mispy
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-11-16 00:00:00.000000000 Z
11
+ date: 2013-12-21 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: minitest
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: ffi
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - '>='
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - '>='
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  description: Ruby bindings for the libtcod roguelike library
@@ -90,27 +85,26 @@ files:
90
85
  - test/helpers.rb
91
86
  homepage: ''
92
87
  licenses: []
88
+ metadata: {}
93
89
  post_install_message:
94
90
  rdoc_options: []
95
91
  require_paths:
96
92
  - lib
97
93
  required_ruby_version: !ruby/object:Gem::Requirement
98
- none: false
99
94
  requirements:
100
- - - ! '>='
95
+ - - '>='
101
96
  - !ruby/object:Gem::Version
102
97
  version: '0'
103
98
  required_rubygems_version: !ruby/object:Gem::Requirement
104
- none: false
105
99
  requirements:
106
- - - ! '>='
100
+ - - '>='
107
101
  - !ruby/object:Gem::Version
108
102
  version: '0'
109
103
  requirements: []
110
104
  rubyforge_project:
111
- rubygems_version: 1.8.25
105
+ rubygems_version: 2.0.3
112
106
  signing_key:
113
- specification_version: 3
107
+ specification_version: 4
114
108
  summary: Ruby bindings for the libtcod roguelike library
115
109
  test_files:
116
110
  - test/color.rb