[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-7978":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":16,"forks30d":16,"starsTrendScore":17,"compositeScore":19,"rankGlobal":10,"rankLanguage":10,"license":20,"archived":21,"fork":21,"defaultBranch":22,"hasWiki":21,"hasPages":23,"topics":24,"createdAt":10,"pushedAt":10,"updatedAt":27,"readmeContent":28,"aiSummary":29,"trendingCount":16,"starSnapshotCount":16,"syncStatus":30,"lastSyncTime":31,"discoverSource":32},7978,"rake","ruby\u002Frake","ruby","A make-like build utility for Ruby.","https:\u002F\u002Fruby.github.io\u002Frake",null,"Ruby",2452,640,82,53,0,1,18,30.42,"MIT License",false,"master",true,[25,5,26,7],"hacktoberfest","rakefile","2026-06-12 02:01:47","= RAKE -- Ruby Make\n\nhome :: https:\u002F\u002Fgithub.com\u002Fruby\u002Frake\nbugs :: https:\u002F\u002Fgithub.com\u002Fruby\u002Frake\u002Fissues\ndocs :: https:\u002F\u002Fruby.github.io\u002Frake\n\n== Description\n\nRake is a Make-like program implemented in Ruby. Tasks and dependencies are\nspecified in standard Ruby syntax.\n\nRake has the following features:\n\n* Rakefiles (rake's version of Makefiles) are completely defined in\n  standard Ruby syntax.  No XML files to edit.  No quirky Makefile\n  syntax to worry about (is that a tab or a space?)\n\n* Users can specify tasks with prerequisites.\n\n* Rake supports rule patterns to synthesize implicit tasks.\n\n* Flexible FileLists that act like arrays but know about manipulating\n  file names and paths.\n\n* A library of prepackaged tasks to make building rakefiles easier. For example,\n  tasks for building tarballs. (Formerly\n  tasks for building RDoc, Gems, and publishing to FTP were included in rake but they're now\n  available in RDoc, RubyGems, and rake-contrib respectively.)\n\n* Supports parallel execution of tasks.\n\n== Installation\n\n=== Gem Installation\n\nDownload and install rake with the following.\n\n  gem install rake\n\n== Usage\n\n=== Simple Example\n\nFirst, you must write a \"Rakefile\" file which contains the build rules. Here's\na simple example:\n\n  task default: %w[test]\n\n  task :test do\n    ruby \"test\u002Funittest.rb\"\n  end\n\nThis Rakefile has two tasks:\n\n* A task named \"test\", which -- upon invocation -- will run a unit test file\n  in Ruby.\n* A task named \"default\". This task does nothing by itself, but it has exactly\n  one dependency, namely the \"test\" task. Invoking the \"default\" task will\n  cause Rake to invoke the \"test\" task as well.\n\nRunning the \"rake\" command without any options will cause it to run the\n\"default\" task in the Rakefile:\n\n  % ls\n  Rakefile     test\u002F\n  % rake\n  (in \u002Fhome\u002Fsome_user\u002FProjects\u002Frake)\n  ruby test\u002Funittest.rb\n  ....unit test output here...\n\nType \"rake --help\" for all available options.\n\n== Resources\n\n=== Rake Information\n\n* {Rake command-line}[rdoc-ref:doc\u002Fcommand_line_usage.rdoc]\n* {Writing Rakefiles}[rdoc-ref:doc\u002Frakefile.rdoc]\n* The original {Rake announcement}[rdoc-ref:doc\u002Frational.rdoc]\n* Rake {glossary}[rdoc-ref:doc\u002Fglossary.rdoc]\n\n=== Presentations and Articles about Rake\n\n* Avdi Grimm's rake series:\n  1. {Rake Basics}[https:\u002F\u002Favdi.codes\u002Frake-part-1-basics\u002F]\n  2. {Rake File Lists}[https:\u002F\u002Favdi.codes\u002Frake-part-2-file-lists-2\u002F]\n  3. {Rake Rules}[https:\u002F\u002Favdi.codes\u002Frake-part-3-rules\u002F]\n  4. {Rake Pathmap}[https:\u002F\u002Favdi.codes\u002Frake-part-4-pathmap\u002F]\n  5. {File Operations}[https:\u002F\u002Favdi.codes\u002Frake-part-5-file-operations\u002F]\n  6. {Clean and Clobber}[https:\u002F\u002Favdi.codes\u002Frake-part-6-clean-and-clobber\u002F]\n  7. {MultiTask}[https:\u002F\u002Favdi.codes\u002Frake-part-7-multitask\u002F]\n* {Jim Weirich's 2003 RubyConf presentation}[https:\u002F\u002Fweb.archive.org\u002Fweb\u002F20140221123354\u002Fhttp:\u002F\u002Fonestepback.org\u002Farticles\u002Fbuildingwithrake\u002F]\n* Martin Fowler's article on Rake: https:\u002F\u002Fmartinfowler.com\u002Farticles\u002Frake.html\n\n== Other Make Re-envisionings ...\n\nRake is a late entry in the make replacement field.  Here are links to\nother projects with similar (and not so similar) goals.\n\n* https:\u002F\u002Fdirectory.fsf.org\u002Fwiki\u002FBras -- Bras, one of earliest\n  implementations of \"make in a scripting language\".\n* http:\u002F\u002Fwww.a-a-p.org -- Make in Python\n* https:\u002F\u002Fant.apache.org -- The Ant project\n* https:\u002F\u002Fsearch.cpan.org\u002Fsearch?query=PerlBuildSystem -- The Perl Build System\n* https:\u002F\u002Fwww.rubydoc.info\u002Fgems\u002Frant\u002F0.5.7\u002Fframes -- Rant, another Ruby make tool.\n\n== Credits\n\n[\u003Cb>Jim Weirich\u003C\u002Fb>] Who originally created Rake.\n\n[\u003Cb>Ryan Dlugosz\u003C\u002Fb>] For the initial conversation that sparked Rake.\n\n[\u003Cb>Nobuyoshi Nakada \u003Cnobu@ruby-lang.org>\u003C\u002Fb>] For the initial patch for rule support.\n\n[\u003Cb>Tilman Sauerbeck \u003Ctilman@code-monkey.de>\u003C\u002Fb>] For the recursive rule patch.\n\n[\u003Cb>Eric Hodel\u003C\u002Fb>] For aid in maintaining rake.\n\n[\u003Cb>Hiroshi SHIBATA\u003C\u002Fb>] Maintainer of Rake 10 and later\n\n== License\n\nRake is available under an MIT-style license.\n\n:include: MIT-LICENSE\n\n---\n\n= Other stuff\n\nAuthor::   Jim Weirich \u003Cjim.weirich@gmail.com>\nRequires:: Ruby 2.0.0 or later\nLicense::  Copyright Jim Weirich.\n           Released under an MIT-style license.  See the MIT-LICENSE\n           file included in the distribution.\n\n== Warranty\n\nThis software is provided \"as is\" and without any express or implied\nwarranties, including, without limitation, the implied warranties of\nmerchantability and fitness for a particular purpose.\n\n== Historical\n\nRake was originally created by Jim Weirich, who unfortunately passed away in\nFebruary 2014. This repository was originally hosted at\n{github.com\u002Fjimweirich\u002Frake}[https:\u002F\u002Fgithub.com\u002Fjimweirich\u002Frake\u002F], however\nwith his passing, has been moved to {ruby\u002Frake}[https:\u002F\u002Fgithub.com\u002Fruby\u002Frake].\n\nYou can view Jim's last commit here:\nhttps:\u002F\u002Fgithub.com\u002Fjimweirich\u002Frake\u002Fcommit\u002F336559f28f55bce418e2ebcc0a57548dcbac4025\n\nYou can {read more about Jim}[https:\u002F\u002Fen.wikipedia.org\u002Fwiki\u002FJim_Weirich] at Wikipedia.\n\nThank you for this great tool, Jim. We'll remember you.\n","Rake 是一个用 Ruby 编写的类似 Make 的构建工具。其核心功能包括使用标准 Ruby 语法定义任务和依赖关系，支持任务前置条件、规则模式以合成隐式任务、灵活的文件列表处理以及并行执行任务的能力。Rake 提供了一套预打包的任务库来简化 Rakefile 的编写过程，如构建 tarball 等。它非常适合需要自动化构建流程、运行测试或执行其他重复性开发任务的 Ruby 项目场景中使用。",2,"2026-06-11 03:15:29","top_language"]