gosu 0.10.1.1 → 0.10.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/ext/gosu/extconf.rb +2 -0
  3. data/rdoc/gosu.rb +2 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c46dd6699c9130c8434d29c5959a5e6a3cee98e1
4
- data.tar.gz: bd9ecfb8eeff6d3cf7a9575faeca1d0c86ef68e2
3
+ metadata.gz: 2fb3a09de604515fbe77c22ef529000d209a944f
4
+ data.tar.gz: e9f3ecbcfa5a2feadc9bbc94b90040e28327b58d
5
5
  SHA512:
6
- metadata.gz: 262068eafcea756f964eb25f5247f44f98d07389c9b9695dc202d060a4207fffd507bf4366e07caff61c3d36f6568a19457e6a494df372c2a1cb722044fd5233
7
- data.tar.gz: a6d61afe0a41de71c3c8faa782884549b3a02a880aff70d8fbb35c5d7fa6f71509bfa4407840e03adb1677d543e50649d12c50494c1a85db6ee816272c01f3b4
6
+ metadata.gz: b01c0d3a59982e155d032ddd09bb9ce3582072f1cb4a208a3fa2b769a4c55e634f02f57217d139f171932a03a3968d71abba37389e73864b62ed46a7dc80801f
7
+ data.tar.gz: e2bbd8efe6e877c7d94e6db147a015c9de154a1337ad706a0e6f6a0c00347c682452f44e05fbc5fc2ac91b01e65d0ced4416ee927b02d3f81cedc5180d18f749
@@ -41,6 +41,8 @@ BASE_FILES = %w(
41
41
  Text/Text.cpp
42
42
  Utility.cpp
43
43
  Window.cpp
44
+
45
+ stb_vorbis.c
44
46
  )
45
47
 
46
48
  MAC_FILES = %w(
@@ -371,6 +371,7 @@ module Gosu
371
371
  # @option options [Fixnum] :width the width of the image, in pixels. Long lines will be automatically wrapped around to avoid overflow, but overlong words will be truncated. If this option is omitted, lines will not be wrapped, and :align and :spacing will be ignored as well.
372
372
  # @option options [Fixnum] :spacing (0) the spacing between lines, in pixels.
373
373
  # @option options [:left, :right, :center, :justify] :align (:left) the text alignment.
374
+ # @option options [true, false] :retro (false) if true, the image will not be interpolated when it is scaled up or down.
374
375
  #
375
376
  # @see Gosu::Font
376
377
  # @see https://github.com/gosu/gosu/wiki/Basic-Concepts#drawing-with-colours Drawing with colors, explained in the Gosu Wiki
@@ -596,7 +597,7 @@ module Gosu
596
597
  # @overload initialize(window, filename)
597
598
  #
598
599
  # @param filename [String] the path to load the song from.
599
- def initialize(window, filename); end
600
+ def initialize(filename); end
600
601
 
601
602
  ##
602
603
  # Starts or resumes playback of the song.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gosu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1.1
4
+ version: 0.10.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julian Raschke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-21 00:00:00.000000000 Z
11
+ date: 2015-08-26 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  2D game development library.