jmonkeyengine 0.1.0

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.
Files changed (44) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +29 -0
  5. data/README.md +33 -0
  6. data/Rakefile +2 -0
  7. data/jmonkeyengine.gemspec +23 -0
  8. data/lib/jmonkeyengine.rb +2 -0
  9. data/lib/jmonkeyengine/version.rb +5 -0
  10. data/vendor/jme3_2014-06-12.jar +0 -0
  11. data/vendor/lib/eventbus.jar +0 -0
  12. data/vendor/lib/gluegen-rt.jar +0 -0
  13. data/vendor/lib/j-ogg-oggd.jar +0 -0
  14. data/vendor/lib/j-ogg-vorbisd.jar +0 -0
  15. data/vendor/lib/jME3-blender.jar +0 -0
  16. data/vendor/lib/jME3-bullet-natives.jar +0 -0
  17. data/vendor/lib/jME3-bullet.jar +0 -0
  18. data/vendor/lib/jME3-core.jar +0 -0
  19. data/vendor/lib/jME3-desktop.jar +0 -0
  20. data/vendor/lib/jME3-effects.jar +0 -0
  21. data/vendor/lib/jME3-jbullet.jar +0 -0
  22. data/vendor/lib/jME3-jogg.jar +0 -0
  23. data/vendor/lib/jME3-lwjgl-natives.jar +0 -0
  24. data/vendor/lib/jME3-lwjgl.jar +0 -0
  25. data/vendor/lib/jME3-networking.jar +0 -0
  26. data/vendor/lib/jME3-niftygui.jar +0 -0
  27. data/vendor/lib/jME3-openal-soft-natives-android.jar +0 -0
  28. data/vendor/lib/jME3-plugins.jar +0 -0
  29. data/vendor/lib/jME3-terrain.jar +0 -0
  30. data/vendor/lib/jME3-testdata.jar +0 -0
  31. data/vendor/lib/jbullet.jar +0 -0
  32. data/vendor/lib/jglfont-core.jar +0 -0
  33. data/vendor/lib/jinput.jar +0 -0
  34. data/vendor/lib/joal.jar +0 -0
  35. data/vendor/lib/jogl-all.jar +0 -0
  36. data/vendor/lib/lwjgl.jar +0 -0
  37. data/vendor/lib/nifty-default-controls.jar +0 -0
  38. data/vendor/lib/nifty-examples.jar +0 -0
  39. data/vendor/lib/nifty-style-black.jar +0 -0
  40. data/vendor/lib/nifty.jar +0 -0
  41. data/vendor/lib/stack-alloc.jar +0 -0
  42. data/vendor/lib/vecmath.jar +0 -0
  43. data/vendor/lib/xmlpull-xpp3.jar +0 -0
  44. metadata +114 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 290e87316840f9fdc63dd1150a3b530efa08b4ef
4
+ data.tar.gz: 67a3ceb762e35cde00ad75c573cd78ffcd5c8aa3
5
+ SHA512:
6
+ metadata.gz: 990f7c71c769e245c127a063df68a18642238b2471b5b275341594232a8414aec68c50a51e6a640d05b653d992a47bdc0d94ab940a85a8978a141ad02d25ab14
7
+ data.tar.gz: 4a12f2d5a8cbd79290577ece22e4689c6388425356dd0481fe01674d938fda6fe919bdff36f38d4032d36ee457f72d912bf298c75230c377f1f5018aa47cccdd
@@ -0,0 +1,18 @@
1
+ .DS_Store
2
+ /.bundle/
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
11
+ *.bundle
12
+ *.so
13
+ *.o
14
+ *.a
15
+ .ruby-version
16
+ .ruby-gemset
17
+ mkmf.log
18
+ *.gem
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in jmonkeyengine.gemspec
4
+ gemspec
@@ -0,0 +1,29 @@
1
+ JMONKEYENGINE-RUBY
2
+
3
+ Copyright (c) 2015 Jeremy Woertink
4
+
5
+ MIT License
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining
8
+ a copy of this software and associated documentation files (the
9
+ "Software"), to deal in the Software without restriction, including
10
+ without limitation the rights to use, copy, modify, merge, publish,
11
+ distribute, sublicense, and/or sell copies of the Software, and to
12
+ permit persons to whom the Software is furnished to do so, subject to
13
+ the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be
16
+ included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
+
26
+ JMONKEYENGINE
27
+
28
+ New BSD (3-clause) License. In other words, you do whatever makes you happy!
29
+ https://github.com/jMonkeyEngine/jmonkeyengine/blob/master/license.txt
@@ -0,0 +1,33 @@
1
+ # JMonkeyEngine
2
+
3
+ This gem will just include the [latest stable build](http://updates.jmonkeyengine.org/stable/3.0/engine/) source of jMonkeyEngine. That way your project won't need to include it because it's huge, and doing a `git push` with over 80mb of jar files takes a while when sitting at the airport.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'jmonkeyengine'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install jmonkeyengine
20
+
21
+ ## Usage
22
+
23
+ 1. Install the gem
24
+ 2. View some [jruby examples](https://github.com/jwoertink/waves) or the [hello world tutorial](http://wiki.jmonkeyengine.org/doku.php/jme3#tutorials_for_beginners)
25
+
26
+
27
+ ## Contributing
28
+
29
+ 1. Fork it ( https://github.com/[my-github-username]/jmonkeyengine/fork )
30
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
31
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
32
+ 4. Push to the branch (`git push origin my-new-feature`)
33
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'jmonkeyengine/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "jmonkeyengine"
8
+ spec.version = JMonkeyEngine::VERSION
9
+ spec.authors = ["Jeremy Woertink"]
10
+ spec.email = ["jeremywoertink@gmail.com"]
11
+ spec.summary = %q{Easily include the JME jar in your project}
12
+ spec.description = %Q{Easily include JME#{JMonkeyEngine::JME_VERSION} into your project.}
13
+ spec.homepage = "https://github.com/jwoertink/jmonkeyengine-ruby"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
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.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
@@ -0,0 +1,2 @@
1
+ require "jmonkeyengine/version"
2
+ require File.join(File.expand_path(File.dirname(__FILE__)), '..', 'vendor', "jme3_#{JMonkeyEngine::JAR_VERSION}.jar")
@@ -0,0 +1,5 @@
1
+ module JMonkeyEngine
2
+ VERSION = "0.1.0" # Version of the Gem
3
+ JME_VERSION = "3.0" # This is the stable framework version
4
+ JAR_VERSION = "2014-06-12" # Version of the actual .jar file
5
+ end
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jmonkeyengine
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jeremy Woertink
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ version_requirements: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ requirement: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ~>
23
+ - !ruby/object:Gem::Version
24
+ version: '1.7'
25
+ prerelease: false
26
+ type: :development
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: '10.0'
39
+ prerelease: false
40
+ type: :development
41
+ description: Easily include JME3.0 into your project.
42
+ email:
43
+ - jeremywoertink@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - jmonkeyengine.gemspec
54
+ - lib/jmonkeyengine.rb
55
+ - lib/jmonkeyengine/version.rb
56
+ - vendor/jme3_2014-06-12.jar
57
+ - vendor/lib/eventbus.jar
58
+ - vendor/lib/gluegen-rt.jar
59
+ - vendor/lib/j-ogg-oggd.jar
60
+ - vendor/lib/j-ogg-vorbisd.jar
61
+ - vendor/lib/jME3-blender.jar
62
+ - vendor/lib/jME3-bullet-natives.jar
63
+ - vendor/lib/jME3-bullet.jar
64
+ - vendor/lib/jME3-core.jar
65
+ - vendor/lib/jME3-desktop.jar
66
+ - vendor/lib/jME3-effects.jar
67
+ - vendor/lib/jME3-jbullet.jar
68
+ - vendor/lib/jME3-jogg.jar
69
+ - vendor/lib/jME3-lwjgl-natives.jar
70
+ - vendor/lib/jME3-lwjgl.jar
71
+ - vendor/lib/jME3-networking.jar
72
+ - vendor/lib/jME3-niftygui.jar
73
+ - vendor/lib/jME3-openal-soft-natives-android.jar
74
+ - vendor/lib/jME3-plugins.jar
75
+ - vendor/lib/jME3-terrain.jar
76
+ - vendor/lib/jME3-testdata.jar
77
+ - vendor/lib/jbullet.jar
78
+ - vendor/lib/jglfont-core.jar
79
+ - vendor/lib/jinput.jar
80
+ - vendor/lib/joal.jar
81
+ - vendor/lib/jogl-all.jar
82
+ - vendor/lib/lwjgl.jar
83
+ - vendor/lib/nifty-default-controls.jar
84
+ - vendor/lib/nifty-examples.jar
85
+ - vendor/lib/nifty-style-black.jar
86
+ - vendor/lib/nifty.jar
87
+ - vendor/lib/stack-alloc.jar
88
+ - vendor/lib/vecmath.jar
89
+ - vendor/lib/xmlpull-xpp3.jar
90
+ homepage: https://github.com/jwoertink/jmonkeyengine-ruby
91
+ licenses:
92
+ - MIT
93
+ metadata: {}
94
+ post_install_message:
95
+ rdoc_options: []
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - '>='
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - '>='
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubyforge_project:
110
+ rubygems_version: 2.1.9
111
+ signing_key:
112
+ specification_version: 4
113
+ summary: Easily include the JME jar in your project
114
+ test_files: []