├── .dep.inc ├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── .travis.yml ├── COPYING ├── Gemfile ├── Makefile ├── README.md ├── Rakefile ├── TODO.txt ├── argnames.h ├── argparser.cpp ├── argparser.h ├── exe └── jruby.sh ├── extconf.rb ├── inc ├── Makefile-conf.mk ├── Makefile-impl.mk └── Makefile-rules.mk ├── jruby.cpp ├── jrubyexe.cpp ├── jvmlauncher.cpp ├── jvmlauncher.h ├── lib └── jruby-launcher.rb ├── nbexecloader.h ├── nbproject ├── Makefile-impl.mk ├── Makefile-mingw.mk ├── Makefile-mingw64.mk ├── Makefile-unix.mk ├── Makefile-variables.mk ├── Package-mingw.bash ├── Package-mingw64.bash ├── Package-unix.bash ├── configurations.xml ├── private │ └── configurations.xml ├── project.properties └── project.xml ├── ng.c ├── platformlauncher.cpp ├── platformlauncher.h ├── rb_w32_cmdvector.h ├── resources ├── jruby.ico └── jruby.rc ├── spec ├── launcher_spec.rb └── spec_helper.rb ├── strlcpy.c ├── unixlauncher.c ├── unixlauncher.h ├── utilsfuncs.cpp ├── utilsfuncs.h ├── utilsfuncswin.cpp └── version.h /.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/.dep.inc -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/Gemfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/TODO.txt -------------------------------------------------------------------------------- /argnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/argnames.h -------------------------------------------------------------------------------- /argparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/argparser.cpp -------------------------------------------------------------------------------- /argparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/argparser.h -------------------------------------------------------------------------------- /exe/jruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/exe/jruby.sh -------------------------------------------------------------------------------- /extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/extconf.rb -------------------------------------------------------------------------------- /inc/Makefile-conf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/inc/Makefile-conf.mk -------------------------------------------------------------------------------- /inc/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/inc/Makefile-impl.mk -------------------------------------------------------------------------------- /inc/Makefile-rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/inc/Makefile-rules.mk -------------------------------------------------------------------------------- /jruby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/jruby.cpp -------------------------------------------------------------------------------- /jrubyexe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/jrubyexe.cpp -------------------------------------------------------------------------------- /jvmlauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/jvmlauncher.cpp -------------------------------------------------------------------------------- /jvmlauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/jvmlauncher.h -------------------------------------------------------------------------------- /lib/jruby-launcher.rb: -------------------------------------------------------------------------------- 1 | module JRubyLauncher 2 | VERSION = "2.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /nbexecloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbexecloader.h -------------------------------------------------------------------------------- /nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /nbproject/Makefile-mingw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/Makefile-mingw.mk -------------------------------------------------------------------------------- /nbproject/Makefile-mingw64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/Makefile-mingw64.mk -------------------------------------------------------------------------------- /nbproject/Makefile-unix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/Makefile-unix.mk -------------------------------------------------------------------------------- /nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /nbproject/Package-mingw.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/Package-mingw.bash -------------------------------------------------------------------------------- /nbproject/Package-mingw64.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/Package-mingw64.bash -------------------------------------------------------------------------------- /nbproject/Package-unix.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/Package-unix.bash -------------------------------------------------------------------------------- /nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/configurations.xml -------------------------------------------------------------------------------- /nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /ng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/ng.c -------------------------------------------------------------------------------- /platformlauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/platformlauncher.cpp -------------------------------------------------------------------------------- /platformlauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/platformlauncher.h -------------------------------------------------------------------------------- /rb_w32_cmdvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/rb_w32_cmdvector.h -------------------------------------------------------------------------------- /resources/jruby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/resources/jruby.ico -------------------------------------------------------------------------------- /resources/jruby.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/resources/jruby.rc -------------------------------------------------------------------------------- /spec/launcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/spec/launcher_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/strlcpy.c -------------------------------------------------------------------------------- /unixlauncher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/unixlauncher.c -------------------------------------------------------------------------------- /unixlauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/unixlauncher.h -------------------------------------------------------------------------------- /utilsfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/utilsfuncs.cpp -------------------------------------------------------------------------------- /utilsfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/utilsfuncs.h -------------------------------------------------------------------------------- /utilsfuncswin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/utilsfuncswin.cpp -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/jruby-launcher/HEAD/version.h --------------------------------------------------------------------------------