micro-fast-tool 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/micro-fast-tool.gemspec +12 -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
- metadata +79 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 25d26498b88f705f9eba0085e607830b3c41ccd74ac231271a5ea1145be6c2ed
|
|
4
|
+
data.tar.gz: 9d7c5c016c5bccdadee8246e295566396f357e2b8dc5385c550868e07690173f
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 6bf500f1439936960200eb120e27d0d4e07cd7e6c6b0fd7277f58da76c3176d78c35b252161c086a0bcdd7b383b2eccef2bb3edddfa79adb4921e46418e36921
|
|
7
|
+
data.tar.gz: 8af15ab7cc2c251ca00655b4707bf731422ea3c22ec22e3eb9484ddbac3f6751446d5654e5429b00d9a322134fe1dafcd69a9ca9d05f2f8b09209345ef7651b5
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = "micro-fast-tool"
|
|
3
|
+
s.version = "0.0.1"
|
|
4
|
+
s.summary = "Research test"
|
|
5
|
+
s.description = "University research based on rake-compiler"
|
|
6
|
+
s.authors = ["Andrey78"]
|
|
7
|
+
s.email = ["cakoc614@gmail.com"]
|
|
8
|
+
s.files = Dir.glob("**/*").reject { |f| f.end_with?('.gem') }
|
|
9
|
+
s.homepage = "https://rubygems.org/profiles/Andrey78"
|
|
10
|
+
s.license = "MIT"
|
|
11
|
+
s.metadata = { "source_code_uri" => "https://github.com/Andrey78/micro-fast-tool" }
|
|
12
|
+
end
|