summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-sleep
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-09-11 20:28:52 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2019-09-11 20:28:52 +0900
commit13c3802073d2b0a90675d4df47d4e7f123933a51 (patch)
tree9f335e20d831aac39a85048547f7ebaf6867c19b /mrbgems/mruby-sleep
parent04b098d000c129b1efde98904b9a1b411b32a46a (diff)
downloadmruby-13c3802073d2b0a90675d4df47d4e7f123933a51.tar.gz
mruby-13c3802073d2b0a90675d4df47d4e7f123933a51.zip
Remove `Rakefile` from `mruby-sleep` gem; fix #4702
The `Rakefile` was a leftover from the time it was an independent gem.
Diffstat (limited to 'mrbgems/mruby-sleep')
-rw-r--r--mrbgems/mruby-sleep/Rakefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/mrbgems/mruby-sleep/Rakefile b/mrbgems/mruby-sleep/Rakefile
deleted file mode 100644
index 5e3c46173..000000000
--- a/mrbgems/mruby-sleep/Rakefile
+++ /dev/null
@@ -1,29 +0,0 @@
-MRUBY_CONFIG=File.expand_path(ENV["MRUBY_CONFIG"] || ".travis_build_config.rb")
-MRUBY_VERSION=ENV["MRUBY_VERSION"] || "1.2.0"
-
-file :mruby do
- cmd = "git clone --depth=1 git://github.com/mruby/mruby.git"
- if MRUBY_VERSION != 'master'
- cmd << " && cd mruby"
- cmd << " && git fetch --tags && git checkout $(git rev-parse #{MRUBY_VERSION})"
- end
- sh cmd
-end
-
-desc "compile binary"
-task :compile => :mruby do
- sh "cd mruby && MRUBY_CONFIG=#{MRUBY_CONFIG} rake all"
-end
-
-desc "test"
-task :test => :mruby do
- sh "cd mruby && MRUBY_CONFIG=#{MRUBY_CONFIG} rake all test"
-end
-
-desc "cleanup"
-task :clean do
- exit 0 unless File.directory?('mruby')
- sh "cd mruby && rake deep_clean"
-end
-
-task :default => :compile