summaryrefslogtreecommitdiffhomepage
path: root/minirake
AgeCommit message (Collapse)Author
2017-03-17MiniRake::Task#timestamp should use Time.now onlyksss
2017-02-10Fix build error when trace modeksss
Rakefile ``` file "a.txt" do system "echo hello > a.txt" end file "b.txt" => "a.txt" do system "cp a.txt b.txt" end task :default => "b.txt" ``` ``` $ touch b.txt $ ruby minirake --trace Invoke default (already=[], needed=[true]) rake aborted! No such file or directory @ rb_file_s_stat - a.txt minirake:241:in `stat' minirake:241:in `timestamp' minirake:233:in `block in needed?' minirake:233:in `collect' minirake:233:in `needed?' minirake:91:in `invoke' minirake:95:in `block in invoke' minirake:95:in `each' minirake:95:in `invoke' minirake:467:in `block in run' minirake:466:in `each' minirake:466:in `run' minirake:484:in `<main>' ```
2015-01-07Correctly handle relative pathsJulian Aron Prenner
2015-01-06Properly implement directory tasksJulian Aron Prenner
2014-05-14Fix incorrect info in minirake's help message -- "-q" is the default, not "-v"Mitchell Blank Jr
2014-03-30Add -C (--directory) option to minirake.take_cheeze
2013-07-26Rename --pull_gems to --pull-gemsh2so5
2013-07-04Add --pull_gems option to minirakekyab
2013-05-09remove unused variablesNihad Abbasov
2013-04-24Set ENV before loading Rakefile in minirakeh2so5
2013-02-21fix access denied error at incremental buildnkshigeru
2013-02-12Extend MiniRake::DSL module to prevent inheritance pollutionRavil Bayramgalin
```include MiniRake::DSL``` on toplevel will pollute ancestor tree of every object. ```extend MiniRake::DSL``` will add those methods only to ```main``` object. Rake does the same: https://github.com/jimweirich/rake/blob/master/lib/rake/dsl_definition.rb#L153
2013-01-21make minirake respect verbose and set verbose to false by defaultDaniel Bovensiepen
2013-01-03Rebuild CRuby based building script without MakefileYuichiro MASUI
Tested CRuby 1.8.6 and 1.9.3 You can see building configuration in build_config.rb
2012-12-22Add MRUBY_CFLAGS / MRUBY_LDFLAGS to mrbgemsYuichiro MASUI
2012-12-20add 'default' task if not specified.mattn
2012-12-18minirake exit status not 0, when build failed.Akira Yumiyama
2012-12-17fix (-T, --tasks) show tasksSelman ULUG
2012-12-17Moved some building script from GNU make to Ruby scriptYuichiro MASUI
Added minirake what's Rake subset
2012-12-16Moved some building script from GNU make to Ruby scriptYuichiro MASUI
Added minirake what's Rake subset