dxruby 1.4.2 → 1.4.7

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
- SHA1:
3
- metadata.gz: 7968ded8aeec6e226fbcc271c27c6bbb06ce6332
4
- data.tar.gz: c1db7b3b6bbe2b6f0784abadd8b52764d2a43f6e
2
+ SHA256:
3
+ metadata.gz: 881a6b593bf3bf3906986ee160acf8539acdb61799d357eb184791a10d44c5a0
4
+ data.tar.gz: ca2a783fed848da8c5e24b281af8fff3e861673b8a8daf3f96a627eec5d65df6
5
5
  SHA512:
6
- metadata.gz: 2f4e8592004cebad9a8baf1be13b523c36fc0d9338cceb7504dfea2eba52ef2fa65e145bfafbee4fa01672df93fb3874a73ed31fbed59bed38654e3784c25fc2
7
- data.tar.gz: 6ad93b9495f74ed25627286024ddd8855be03d6568d31d46c68605f5e451be74a95a04516a6e7557a5f5f494d5cefd671867ce91122e77e20d9a5a5d3c76f09d
6
+ metadata.gz: 6d887fd236ef5665fe2c1ff12ed7643248333cea7d6b19cc07bc67bd8b55b925b673695833e2db0f72a38293e0a7b97728c64fd58cbd9f1b9b965d30d55d1c8d
7
+ data.tar.gz: ee4312daa1c59864c5863389641b77ae9724bf50b783a8723aadf1bff067c66ac1a796422762df4806a931332d2c6227a6295f45093ae3c9d44db21308f0edba
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,4 +1,6 @@
1
1
  major, minor, micro, = RUBY_VERSION.split(/\./)
2
- require "#{major}.#{minor}/dxruby.so"
3
-
4
-
2
+ if /x64/ =~ RUBY_PLATFORM
3
+ require "#{major}.#{minor}_x64/dxruby.so"
4
+ else
5
+ require "#{major}.#{minor}/dxruby.so"
6
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dxruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - mirichi
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-06 00:00:00.000000000 Z
11
+ date: 2021-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -45,25 +45,19 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - ".gitignore"
49
- - Gemfile
50
- - LICENSE.txt
51
- - README.md
52
- - Rakefile
53
- - dxruby.gemspec
54
- - lib/2.0/dxruby.so
55
- - lib/2.0/dxrubyex.so
56
- - lib/2.1/dxruby.so
57
- - lib/2.1/dxrubyex.so
58
- - lib/2.2/dxruby.so
59
- - lib/2.2/dxrubyex.so
48
+ - lib/2.5/dxruby.so
49
+ - lib/2.6/dxruby.so
50
+ - lib/2.6_x64/dxruby.so
51
+ - lib/2.7/dxruby.so
52
+ - lib/2.7_x64/dxruby.so
53
+ - lib/3.0/dxruby.so
54
+ - lib/3.0_x64/dxruby.so
60
55
  - lib/dxruby.rb
61
- - lib/dxrubyex.rb
62
56
  homepage: http://dxruby.osdn.jp/
63
57
  licenses:
64
58
  - zlib/libpng
65
59
  metadata: {}
66
- post_install_message:
60
+ post_install_message:
67
61
  rdoc_options: []
68
62
  require_paths:
69
63
  - lib
@@ -78,9 +72,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
72
  - !ruby/object:Gem::Version
79
73
  version: '0'
80
74
  requirements: []
81
- rubyforge_project:
82
- rubygems_version: 2.4.5.1
83
- signing_key:
75
+ rubygems_version: 3.2.3
76
+ signing_key:
84
77
  specification_version: 4
85
78
  summary: ":-)"
86
79
  test_files: []
data/.gitignore DELETED
@@ -1,35 +0,0 @@
1
- *.gem
2
- *.rbc
3
- /.config
4
- /coverage/
5
- /InstalledFiles
6
- /pkg/
7
- /spec/reports/
8
- /test/tmp/
9
- /test/version_tmp/
10
- /tmp/
11
-
12
- ## Specific to RubyMotion:
13
- .dat*
14
- .repl_history
15
- build/
16
-
17
- ## Documentation cache and generated files:
18
- /.yardoc/
19
- /_yardoc/
20
- /doc/
21
- /rdoc/
22
-
23
- ## Environment normalisation:
24
- /.bundle/
25
- /vendor/bundle
26
- /lib/bundler/man/
27
-
28
- # for a library or gem, you might want to ignore these files since the code is
29
- # intended to run in multiple environments; otherwise, check them in:
30
- # Gemfile.lock
31
- # .ruby-version
32
- # .ruby-gemset
33
-
34
- # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
35
- .rvmrc
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in dxruby.gemspec
4
- gemspec
@@ -1,13 +0,0 @@
1
- The zlib/libpng License
2
- Copyright (c) <2012> <DXRubyDevelopers>
3
-
4
- This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
5
-
6
- Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
7
-
8
- 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
9
-
10
- 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
11
-
12
- 3. This notice may not be removed or altered from any source distribution.
13
-
data/README.md DELETED
@@ -1,29 +0,0 @@
1
- # Dxruby
2
-
3
- TODO: Write a gem description
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'dxruby'
10
-
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
16
-
17
- $ gem install dxruby
18
-
19
- ## Usage
20
-
21
- TODO: Write usage instructions here
22
-
23
- ## Contributing
24
-
25
- 1. Fork it
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
28
- 4. Push to the branch (`git push origin my-new-feature`)
29
- 5. Create new Pull Request
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
@@ -1,23 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'dxruby'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "dxruby"
8
- spec.version = DXRuby::VERSION
9
- spec.authors = ["mirichi"]
10
- spec.email = ["sawara01@gmail.com"]
11
- spec.description = %q{2D game library for Windows(DirectX9)}
12
- spec.summary = %q{:-)}
13
- spec.homepage = "http://dxruby.osdn.jp/"
14
- spec.license = "zlib/libpng"
15
-
16
- spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_development_dependency "bundler", "~> 1.3"
22
- spec.add_development_dependency "rake"
23
- end
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,4 +0,0 @@
1
- major, minor, micro, = RUBY_VERSION.split(/\./)
2
- require "#{major}.#{minor}/dxrubyex.so"
3
-
4
-