summaryrefslogtreecommitdiffhomepage
path: root/tasks
AgeCommit message (Collapse)Author
2013-09-23eliminate use of traditional intern API (mrb_intern()) completelyYuichi Nishiwaki
2013-08-26Merge pull request #1490 from take-cheeze/cxx_extensionYukihiro "Matz" Matsumoto
support file extension .cpp/.cxx in mrbgem and tool
2013-08-26support file extension .cpp/.cxx in mrbgem and tooltake_cheeze
2013-08-19add x86_64-darwin host platform.taku toyama
2013-08-04Added support for custom gem clone directories when using gitRyan Scott
2013-07-27replace "if not" to "unless"Yukihiro "Matz" Matsumoto
2013-07-25if mrbc.run fail, abort rakefleuria
2013-07-24Fix mrbc error for space included pathkyab
2013-07-23display multiple authors better.Tomoyuki Sahara
Before: Copyright (c) 2013 ["a", "b"] After: Copyright (c) 2013 a, b
2013-07-21Merge pull request #1395 from carsonmcdonald/fixdepcheckYukihiro "Matz" Matsumoto
Fail if dependency isn't found
2013-07-20Fail if dependency isn't foundCarson McDonald
2013-07-20Improve Android NDK toolchain support.crimsonwoods
Linux-x86_64 has not been supported now. This commit add Linux-x86_64 platform support.
2013-07-15Allow programmers to specify build path manuallyXuejie "Rafael" Xiao
2013-07-08Fix the androideabi toolchain not matching hostRobert Rowe
The included method of determining the host platform in the androideabi would not match to windows if RUBY_PLATFORM returned mingw, wince, or emx. As an added pre-caution, using a case statement with regexp matching will better determine the host platform since it won't be case sensitive and for windows is set to match more specifially than just "win".
2013-07-04Add --pull_gems option to minirakekyab
2013-06-15Remove extra separator in compile commandkyab
2013-05-26mruby error messages should be directed to stderrYukihiro "Matz" Matsumoto
2013-05-14mrbc to take multiple files, preserving debug information if -g given; close ↵Yukihiro "Matz" Matsumoto
#1243
2013-05-13Allow mrbc command options to be changedCarson McDonald
2013-05-13show a backtrace when when an error occurs on gem load; close #1243Yukihiro "Matz" Matsumoto
2013-05-11Change alghorithm to algorithmCarson McDonald
2013-05-09Merge pull request #1242 from schmurfy/gem_versionYukihiro "Matz" Matsumoto
consider gem version to be 0.0.0 unless specified
2013-05-09Merge pull request #1245 from NARKOZ/fix-warningsYukihiro "Matz" Matsumoto
remove unused variables
2013-05-09remove unused variablesNihad Abbasov
2013-05-09fix regexp warning: character class has duplicated rangeNihad Abbasov
2013-05-09consider empty version requirements as >= 0.0.0Julien Ammous
2013-05-09consider gem version to be 0.0.0 unless specifiedJulien Ammous
2013-05-09Todo is actually already finished :-)Daniel Bovensiepen
2013-05-09Implement GEM dependency checkDaniel Bovensiepen
2013-05-04Merge branch 'bovi-gem-duplication'Yukihiro "Matz" Matsumoto
2013-05-04remove explicit check to honor duck typingYukihiro "Matz" Matsumoto
2013-05-04avoid subclassing Array not to inherit too much methodsYukihiro "Matz" Matsumoto
2013-05-03Move GemList to MRuby::Gem::List. More logical locationDaniel Bovensiepen
2013-05-03Use advanced GemList as list for GEMsDaniel Bovensiepen
2013-05-03Implement GemList which can identify GEM duplicatesDaniel Bovensiepen
2013-05-03sort mrbgem's mrblib/*.rb filesAkira Yumiyama
- https://github.com/mruby/mruby/commit/5de9a8cc50052db105ea8ba06d64b95cb1b57db1
2013-05-02Improve Gem::Specification for support of dependencies and requirementsDaniel Bovensiepen
2013-05-02Implement :core parameter for conf.gemDaniel Bovensiepen
2013-04-27fix gembox rake tasks to support Ruby 1.8Yukihiro "Matz" Matsumoto
2013-04-27IMPROVE: Move GemBox to more logical source locationDaniel Bovensiepen
2013-04-27Add gembox featureDaniel Bovensiepen
2013-04-23Pass verbose flag to each gem testXuejie "Rafael" Xiao
2013-04-20put spaces after if/whileYukihiro "Matz" Matsumoto
2013-04-13Add vs2010.rakeh2so5
2013-04-11Move mirb and mruby to mrbgems.Masaki Muranaka
2013-04-08Merge pull request #1150 from monaka/pr-add-test-runner-supportYukihiro "Matz" Matsumoto
Add "test runner" support for cross builds.
2013-04-07Add "test runner" support for cross builds.Masaki Muranaka
"test runner" means target simulator like QEmu, GDB sim, and so on. Also "test runner" might be debug agents for real targets. If you do not setup test_runner, Rake will work same as before.
2013-04-06Merge pull request #1116 from kurodash/pr-exclude-legal-from-archiveYukihiro "Matz" Matsumoto
Modified build dependency to exclude 'LEGAL' from libmruby archive.
2013-04-06use EXIT_SUCCESS and EXIT_FAILURE for exit status; close #1142Yukihiro "Matz" Matsumoto
2013-04-05Improve CRuby rake compatibleYuichiro MASUI