dxruby_sdl 0.0.14 → 0.0.15
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 +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +1 -1
- data/README.md +1 -3
- data/Rakefile +1 -1
- data/lib/dxruby_sdl/font.rb +5 -1
- data/lib/dxruby_sdl/version.rb +1 -1
- data/samples/bgm.mid +1 -0
- data/samples/sound.wav +1 -0
- data/spec/spec_helper.rb +3 -0
- metadata +3 -3
- data/samples/bgm.mid +0 -0
- data/samples/sound.wav +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ba5e8082520e8fb4624e1e4c52aa7ff387109d01
|
|
4
|
+
data.tar.gz: 49da563ff5ecb264a44b98929b9f4e93ab8d8a94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2ccf2367ad0261120a36f7c3e8760a44fe7752775cb3e567ea2e275de25a1592990e97dfd35bf2035ef06a18cd4b6eed7380d8890385f0f14fc45be27b9cd27
|
|
7
|
+
data.tar.gz: 529148f8c073c3586e63d01f00a0952145e36af648156cef8112f14d8dda229ae7e13a9a69a59a19840af48a0c35916d953bf86e96632a859ca3b05a0fba2131
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.3.3
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -9,8 +9,6 @@
|
|
|
9
9
|
`dxruby_sdl` is a ruby library for 2D graphics and game. It has same
|
|
10
10
|
DXRuby API. It use SDL/Ruby.
|
|
11
11
|
|
|
12
|
-
Current API compatibility status: http://dxruby-apis.herokuapp.com/en/
|
|
13
|
-
|
|
14
12
|
## Installation
|
|
15
13
|
|
|
16
14
|
### SDL, SGE, etc...
|
|
@@ -58,7 +56,7 @@ $ brew install https://gist.githubusercontent.com/ymmtmdk/5b15f2b06aef5549eb5a/r
|
|
|
58
56
|
|
|
59
57
|
(3) MS PGohic (DXRuby's default font)
|
|
60
58
|
|
|
61
|
-
|
|
59
|
+
Search and download from internet. A keyword example is "ms pgothic download".
|
|
62
60
|
|
|
63
61
|
#### Linux
|
|
64
62
|
|
data/Rakefile
CHANGED
|
@@ -52,7 +52,7 @@ task :release do
|
|
|
52
52
|
File.open('lib/dxruby_sdl/version.rb', 'r+') do |f|
|
|
53
53
|
lines = []
|
|
54
54
|
while line = f.gets
|
|
55
|
-
line = "#{$1}
|
|
55
|
+
line = "#{$1}'#{next_version}'\n" if /(\s*VERSION =\s*)/.match(line)
|
|
56
56
|
lines << line
|
|
57
57
|
end
|
|
58
58
|
f.rewind
|
data/lib/dxruby_sdl/font.rb
CHANGED
data/lib/dxruby_sdl/version.rb
CHANGED
data/samples/bgm.mid
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
../spec/fixtures/bgm.mid
|
data/samples/sound.wav
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
../spec/fixtures/sound.wav
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dxruby_sdl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kouji Takao
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -264,7 +264,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
264
264
|
version: '0'
|
|
265
265
|
requirements: []
|
|
266
266
|
rubyforge_project:
|
|
267
|
-
rubygems_version: 2.
|
|
267
|
+
rubygems_version: 2.5.2
|
|
268
268
|
signing_key:
|
|
269
269
|
specification_version: 4
|
|
270
270
|
summary: 2D graphics and game library
|
data/samples/bgm.mid
DELETED
|
Binary file
|
data/samples/sound.wav
DELETED
|
Binary file
|