ultra-smart-mod 0.0.1
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.
- checksums.yaml +7 -0
- data/rake-compiler-1.3.1/Gemfile +8 -0
- data/rake-compiler-1.3.1/History.md +695 -0
- data/rake-compiler-1.3.1/LICENSE.txt +20 -0
- data/rake-compiler-1.3.1/README.md +476 -0
- data/rake-compiler-1.3.1/Rakefile +15 -0
- data/rake-compiler-1.3.1/appveyor.yml +22 -0
- data/rake-compiler-1.3.1/bin/rake-compiler +24 -0
- data/rake-compiler-1.3.1/cucumber.yml +4 -0
- data/rake-compiler-1.3.1/features/compile.feature +79 -0
- data/rake-compiler-1.3.1/features/cross-compile.feature +23 -0
- data/rake-compiler-1.3.1/features/cross-package-multi.feature +15 -0
- data/rake-compiler-1.3.1/features/cross-package.feature +14 -0
- data/rake-compiler-1.3.1/features/java-compile.feature +22 -0
- data/rake-compiler-1.3.1/features/java-no-native-compile.feature +33 -0
- data/rake-compiler-1.3.1/features/java-package.feature +24 -0
- data/rake-compiler-1.3.1/features/package.feature +40 -0
- data/rake-compiler-1.3.1/features/step_definitions/compilation.rb +70 -0
- data/rake-compiler-1.3.1/features/step_definitions/cross_compilation.rb +27 -0
- data/rake-compiler-1.3.1/features/step_definitions/execution.rb +52 -0
- data/rake-compiler-1.3.1/features/step_definitions/folders.rb +32 -0
- data/rake-compiler-1.3.1/features/step_definitions/gem.rb +46 -0
- data/rake-compiler-1.3.1/features/step_definitions/java_compilation.rb +7 -0
- data/rake-compiler-1.3.1/features/support/env.rb +10 -0
- data/rake-compiler-1.3.1/features/support/file_template_helpers.rb +137 -0
- data/rake-compiler-1.3.1/features/support/generator_helpers.rb +123 -0
- data/rake-compiler-1.3.1/features/support/platform_extension_helpers.rb +27 -0
- data/rake-compiler-1.3.1/lib/rake/baseextensiontask.rb +90 -0
- data/rake-compiler-1.3.1/lib/rake/compiler_config.rb +38 -0
- data/rake-compiler-1.3.1/lib/rake/extensioncompiler.rb +51 -0
- data/rake-compiler-1.3.1/lib/rake/extensiontask.rb +589 -0
- data/rake-compiler-1.3.1/lib/rake/javaextensiontask.rb +321 -0
- data/rake-compiler-1.3.1/tasks/bin/cross-ruby.rake +189 -0
- data/rake-compiler-1.3.1/tasks/bootstrap.rake +11 -0
- data/rake-compiler-1.3.1/tasks/common.rake +10 -0
- data/rake-compiler-1.3.1/tasks/cucumber.rake +23 -0
- data/rake-compiler-1.3.1/tasks/gem.rake +15 -0
- data/rake-compiler-1.3.1/tasks/rspec.rake +9 -0
- data/ultra-smart-mod.gemspec +12 -0
- metadata +79 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 75b8c661457a08688834d5450d1f21a93b266ff56f18ffc92e1f0efd0ab499bd
|
|
4
|
+
data.tar.gz: eca09b15def21a341392abf2dd4220cb0351bd6162dcd2612220b3ac609bba32
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 005df4920a1157b36d81be5e423bb7cf3a6878b1cf355ad822b9aa285e80fd1a3dbc4ba08bfa31fe2eb101c90f174e604bb35f1a19011df4f1ba86e888a60b41
|
|
7
|
+
data.tar.gz: b3479f070c27a85b5b9df29a7fa20a8ddd54f312306fbe135a7a28a541c890b25c557f774a73418f5baba07dbfe85ff5bf0787afa075eb4fc0c994924464406d
|