dxruby_sdl 0.0.14 → 0.0.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: abfa04925d04461b51b1c1d3bb737e31f785e766
4
- data.tar.gz: e4c5e19a4272e8928f49ad42abb8bb06ef3cef35
3
+ metadata.gz: ba5e8082520e8fb4624e1e4c52aa7ff387109d01
4
+ data.tar.gz: 49da563ff5ecb264a44b98929b9f4e93ab8d8a94
5
5
  SHA512:
6
- metadata.gz: d9630462d2db0faec4efa96f40a739f5c509465ee731dd6a90c2eaae57b546560528a2d776b086d9c3e1b3a38ab5d2d67c8c029dfe351095187e5b9b0dfb10f7
7
- data.tar.gz: 3f01412b02aa5a3b90ee807fbd2f2d5448e4a7b03e6dda3974cafe82d3a60203f56d5389f02707dfb6a5232cd3a7ef76b53708d6140fe35aaec9a2ea3b4ec28e
6
+ metadata.gz: a2ccf2367ad0261120a36f7c3e8760a44fe7752775cb3e567ea2e275de25a1592990e97dfd35bf2035ef06a18cd4b6eed7380d8890385f0f14fc45be27b9cd27
7
+ data.tar.gz: 529148f8c073c3586e63d01f00a0952145e36af648156cef8112f14d8dda229ae7e13a9a69a59a19840af48a0c35916d953bf86e96632a859ca3b05a0fba2131
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.1.5
1
+ 2.3.3
data/.travis.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.1.5
4
+ - 2.3.3
5
5
 
6
6
  env:
7
7
  AUDIODEV=null
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
- Install Microsoft Office:mac from http://www.microsoft.com/japan/mac.
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} '#{next_version}'\n" if /(\s*VERSION = )/.match(line)
55
+ line = "#{$1}'#{next_version}'\n" if /(\s*VERSION =\s*)/.match(line)
56
56
  lines << line
57
57
  end
58
58
  f.rewind
@@ -68,9 +68,13 @@ module DXRubySDL
68
68
  MS\ Mincho
69
69
  ],
70
70
  %w[
71
- osaka
71
+ Osaka
72
72
  /Library/Fonts/osaka.ttf
73
73
  ],
74
+ %w[
75
+ ヒラギノ丸ゴ\ ProN\ W4
76
+ /Library/Fonts/ヒラギノ丸ゴ\ ProN\ W4.ttc
77
+ ],
74
78
  %w[
75
79
  IPA\ Pゴシック
76
80
  /Library/Fonts/ipagp.ttf
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf-8 -*-
2
2
 
3
3
  module DXRubySDL
4
- VERSION = '0.0.14'
4
+ VERSION = '0.0.15'
5
5
  end
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
@@ -3,6 +3,9 @@
3
3
  require 'coveralls'
4
4
  Coveralls.wear!
5
5
 
6
+ require 'rspec/its'
7
+ require 'rspec/collection_matchers'
8
+
6
9
  $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
7
10
  require 'dxruby_sdl'
8
11
 
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.14
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: 2016-03-09 00:00:00.000000000 Z
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.2.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