From a91cded4e0b269884e8c4b75a2340af396a28458 Mon Sep 17 00:00:00 2001 From: Brian Shirai Date: Mon, 4 Dec 2017 17:37:01 -0800 Subject: [PATCH] Update README. --- README | 4 +--- README.md | 4 +--- rakelib/vm.rake | 4 ---- rubinius-build_tools.gemspec | 18 ------------------ rubinius-developer_tools.gemspec | 16 ---------------- rubinius.gemspec | 18 ------------------ 6 files changed, 2 insertions(+), 62 deletions(-) delete mode 100644 rubinius-build_tools.gemspec delete mode 100644 rubinius-developer_tools.gemspec delete mode 100644 rubinius.gemspec diff --git a/README b/README index 71359e59ac..1025b06cf7 100644 --- a/README +++ b/README @@ -58,9 +58,7 @@ To install Rubinius, use the following steps: 1. Ensure that MRI 2.0+, rubygems, rake, git and LLVM are installed 2. git clone git://github.com/rubinius/rubinius.git 3. cd rubinius - 4. bundle - 5. ./configure --prefix=/path/to/install/dir - 6. rake + 4. ./build.sh --prefix=/path/to/install/dir When the install process finishes, follow the directions printed to the terminal to add the Rubinius executable (bin) directory to your PATH. diff --git a/README.md b/README.md index 13fc859900..67105872ea 100644 --- a/README.md +++ b/README.md @@ -43,9 +43,7 @@ To install Rubinius, use the following steps: 1. Ensure that MRI 2.0+, rubygems, rake, git and LLVM are installed 2. git clone git://github.com/rubinius/rubinius.git 3. cd rubinius -4. bundle -5. ./configure --prefix=/path/to/install/dir -6. rake +4. ./build.sh --prefix=/path/to/install/dir When the install process finishes, follow the directions printed to the terminal to add the Rubinius executable (bin) directory to your PATH. diff --git a/rakelib/vm.rake b/rakelib/vm.rake index 01c40181cb..ca297a7a82 100644 --- a/rakelib/vm.rake +++ b/rakelib/vm.rake @@ -163,10 +163,6 @@ def files(targets, dependencies=nil, &block) end end -directory "machine/gen" - -file 'build/scripts/field_extract.rb' => 'machine/gen' - task :run_field_extract do ruby 'build/scripts/field_extract.rb', *field_extract_headers end diff --git a/rubinius-build_tools.gemspec b/rubinius-build_tools.gemspec deleted file mode 100644 index 6b985a43bc..0000000000 --- a/rubinius-build_tools.gemspec +++ /dev/null @@ -1,18 +0,0 @@ -# coding: utf-8 - -Gem::Specification.new do |spec| - spec.name = "rubinius-build_tools" - spec.version = "2.0.0" - spec.authors = ["Brian Shirai"] - spec.email = ["brixen@gmail.com"] - spec.description = %q{A meta-gem for the Rubinius components that compile Ruby source code to bytecode.} - spec.summary = %q{A meta-gem for the Rubinius build toolchain.} - spec.homepage = "http://rubini.us" - spec.license = "BSD" - - spec.add_dependency "rubinius-ast", "~> 2.0" - spec.add_dependency "rubinius-compiler", "~> 2.0" - spec.add_dependency "rubinius-melbourne", "~> 2.0" - spec.add_dependency "rubinius-processor", "~> 2.0" - spec.add_dependency "rubinius-toolset", "~> 2.0" -end diff --git a/rubinius-developer_tools.gemspec b/rubinius-developer_tools.gemspec deleted file mode 100644 index 5f92d80472..0000000000 --- a/rubinius-developer_tools.gemspec +++ /dev/null @@ -1,16 +0,0 @@ -# coding: utf-8 - -Gem::Specification.new do |spec| - spec.name = "rubinius-developer_tools" - spec.version = "2.0.0" - spec.authors = ["Brian Shirai"] - spec.email = ["brixen@gmail.com"] - spec.description = %q{A meta-gem for the Rubinius developer components like the debugger, profiler, coverage tool, etc.} - spec.summary = %q{A meta-gem for the Rubinius developer tools.} - spec.homepage = "http://rubini.us" - spec.license = "BSD" - - spec.add_dependency "rubinius-debugger", "~> 2.0" - spec.add_dependency "rubinius-coverage", "~> 2.0" - spec.add_dependency "rubinius-profiler", "~> 2.0" -end diff --git a/rubinius.gemspec b/rubinius.gemspec deleted file mode 100644 index 73a7c93b5c..0000000000 --- a/rubinius.gemspec +++ /dev/null @@ -1,18 +0,0 @@ -# coding: utf-8 - -Gem::Specification.new do |spec| - spec.name = "rubinius" - spec.version = "2.0.1" - spec.authors = ["Brian Shirai"] - spec.email = ["brixen@gmail.com"] - spec.description = %q{A meta-gem for all the Rubinius components that are provided as gems.} - spec.summary = %q{A meta-gem for all the Rubinius components that are provided as gems.} - spec.homepage = "http://rubini.us" - spec.license = "BSD" - - # build tools - spec.add_dependency "rubinius-build_tools", "~> 2.0" - - # developer tools - spec.add_dependency "rubinius-developer_tools", "~> 2.0" -end