首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏DevOps持续交付

    一文搞清rake、Rakefile、gem、gemspec、bundler、bundle、Gemfile的关系

    rake和Rakefile rake是Ruby语言的类make程序。可以在其中定义任务和源码依赖。 rake = r(uby’s m)ake 就像make有Makefile文件一样,rake有对应的Rakefile。 它们都属于构建工具的范畴。 表格展示如下: 语言 构建工具名称 构建工具配置文件 C Make Makefile Ruby Rake Rakefile gem和gemspec gem是宝石的意思。 总结 rake是Ruby语言的构建工具,它的配置文件是Rakefile。 gem是Ruby语言的包管理工具,它的配置文件后缀是.gemspec。

    4.6K50发布于 2020-03-10
  • 来自专栏DevOps持续交付

    分清Ruby语言的这些概念,也就搞懂了构建工具、依赖管理工具和包管理工具!

    概述 Ruby中有一些概念比较复杂,容易混淆:rake、Rakefile、gem、gemspec、bundler、bundle、Gemfile 概述 这几个都是Ruby语言中的概念。 rake和Rakefile rake是Ruby语言的类make程序。可以在其中定义任务和源码依赖。 rake = r(uby’s m)ake 就像make有Makefile文件一样,rake有对应的Rakefile。 它们都属于构建工具的范畴。 表格展示如下: 语言 构建工具名称 构建工具配置文件 C Make Makefile Ruby Rake Rakefile gem和gemspec gem是宝石的意思。 总结 rake是Ruby语言的构建工具,它的配置文件是Rakefile。和make、cmake是一类东西。 gem是Ruby语言的包管理工具,它的配置文件后缀是.gemspec。

    93820编辑于 2023-11-16
  • 来自专栏CSDN搜“看,未来”

    Git 查看提交历史

    @gee-mail.com> Date: Mon Mar 17 21:52:11 2008 -0700 changed the version number diff --git a/Rakefile b/Rakefile index a874b73..8f94139 100644 --- a/Rakefile +++ b/Rakefile @@ -7,3 +7,3 @@ spec = Gem::Specification.new

    1.6K10编辑于 2022-05-06
  • 来自专栏tea9的博客

    jekyll添加文章流程

    前提 需要在jekyll博客下生产rakefile.rb文件 1.创建文章 使用命令 rake post title="文章名称" 2.编辑文章 使用编辑器编写文章 3.本地预览 运行命令 git add --all git commit -m "add post" git push -u origin master 5.在线预览 访问网址 https://tea9.github.io rakefile.rb

    71020编辑于 2022-07-16
  • 来自专栏运维前线

    2.3 Git 基础 - 查看提交历史

    @gee-mail.com> Date: Mon Mar 17 21:52:11 2008 -0700 changed the version number diff --git a/Rakefile b/Rakefile index a874b73..8f94139 100644 --- a/Rakefile +++ b/Rakefile @@ -5,7 +5,7 @@ require 'rake Chacon <schacon@gee-mail.com> Date: Mon Mar 17 21:52:11 2008 -0700 changed the version number Rakefile gee-mail.com> Date: Sat Mar 15 10:31:28 2008 -0700 first commit README | 6 ++++++ Rakefile

    1.3K20发布于 2019-05-26
  • 来自专栏运维前线

    2.6 Git 基础 - 打标签

    166ae0c4d3f420721acbb115cc33848dfcc2121a started write support 9fceb02d0ae598e95dc970b74767f19372d61af8 updated rakefile the todo 8a5cbc430f1a9c3d00faaeffd07798508422908a updated readme 现在,假设在 v1.2 时你忘记给项目打标签,也就是在 “updated rakefile 9fceb02d0ae598e95dc970b74767f19372d61af8 Author: Magnus Chacon <mchacon@gee-mail.com> Date: Sun Apr 27 20:43:35 2008 -0700 updated rakefile

    87130发布于 2019-05-26
  • 来自专栏技术杂记

    Rails 容器与配置(3)

    ./ .gitignore Gemfile Gemfile.lock README.rdoc Rakefile config.ru app/ app/assets/ app/assets/images/ blog2 [root@h104 blog2]# ls app bin config config.ru db Gemfile Gemfile.lock lib log public Rakefile

    69120发布于 2021-10-20
  • 来自专栏入门小站

    Linux之ack命令

    *\bpython/ --[no]rake Rakefile --[no]rr .R --[no]rst .rst --[no]ruby .rb .rhtml .rjs .rxml .erb .rake .spec; Rakefile; first line matches /^#!.

    1.6K00编辑于 2022-03-17
  • 来自专栏入门小站

    Linux之ack命令

    *\bpython/ --[no]rake Rakefile --[no]rr .R --[no]rst .rst --[no]ruby .rb .rhtml .rjs .rxml .erb .rake .spec; Rakefile; first line matches /^#!.

    2.3K00发布于 2021-08-18
  • 来自专栏入门小站

    Linux之ack命令

    *\bpython/ --[no]rake Rakefile --[no]rr .R --[no]rst .rst --[no]ruby .rb .rhtml .rjs .rxml .erb .rake .spec; Rakefile; first line matches /^#!.

    1.7K20编辑于 2022-06-02
  • 来自专栏技术杂记

    Rails 容器与配置(4)

    的旁边 [root@h104 blog2]# ls app bin config config.ru db Gemfile Gemfile.lock lib log public Rakefile h104 blog2]# ls app bin config config.ru db Dockerfile Gemfile Gemfile.lock lib log public Rakefile

    1.3K30发布于 2021-10-20
  • 来自专栏技术杂记

    Ruby on Rails 基础(7)

    public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt ├── Rakefile

    1.8K20发布于 2021-11-25
  • 来自专栏技术小黑屋

    Octopress 下 Rake 失败问题解决

    p484/gems/bundler-1.6.2/lib/bundler/setup.rb:7:in `<top (required)>' /Users/androidyue/github/myblog/Rakefile

    65710发布于 2018-09-04
  • 来自专栏技术杂记

    Rails MVC 和 CRUD(1)

    rvm.io/] [root@h202 blog]# ls app bin config config.ru db Gemfile Gemfile.lock lib log public Rakefile

    68270发布于 2021-11-24
  • 来自专栏技术杂记

    Ruby on Rails 基础(8)

    Rakefile 保存并加载可在命令行中执行的任务。任务在 Rails 的各组件中定义。如果想添加自己的任务,不要修改这个文件,把任务保存在 lib/tasks 文件夹中。

    2.9K30发布于 2021-11-25
  • 来自专栏智慧协同

    Zsh使用指南(转)

    另一个比较实用的技巧是使用** 可以递归查找.我要在目录下寻找Rakefile. ? 让我们加一个修饰符来递归查找大于20mb的文件. ? 工具插件 oh-my-zsh有一个为工具提供的插件的列表.我用rake插件可以允许你用<TAB> 进入在你Rakefile里的rake命令. ?

    3K20发布于 2019-06-13
  • 来自专栏项勇

    《Pro Git》翻译文2.6 - 打标签

    166ae0c4d3f420721acbb115cc33848dfcc2121a started write support 9fceb02d0ae598e95dc970b74767f19372d61af8 updated rakefile the todo 8a5cbc430f1a9c3d00faaeffd07798508422908a updated readme 现在,假设在 v1.2 时你忘记给项目打标签,也就是在“updated rakefile 9fceb02d0ae598e95dc970b74767f19372d61af8 Author: Magnus Chacon <mchacon@gee-mail.com> Date: Sun Apr 27 20:43:35 2008 -0700 updated rakefile

    66410发布于 2019-12-13
  • 来自专栏技术杂记

    Rails 构建评论功能(1)

    rvm.io/] [root@h202 blog]# ls app bin config config.ru db Gemfile Gemfile.lock lib log public Rakefile

    79150发布于 2021-10-20
  • 来自专栏自动化、性能测试

    Git 系列教程(9)- 打标签

    166ae0c4d3f420721acbb115cc33848dfcc2121a started write support 9fceb02d0ae598e95dc970b74767f19372d61af8 updated rakefile the todo 8a5cbc430f1a9c3d00faaeffd07798508422908a updated readme 现在,假设在 v1.2 时你忘记给项目打标签,也就是在 “updated rakefile 9fceb02d0ae598e95dc970b74767f19372d61af8 Author: Magnus Chacon <mchacon@gee-mail.com> Date: Sun Apr 27 20:43:35 2008 -0700 updated rakefile

    62430发布于 2021-05-18
  • 来自专栏技术小黑屋

    一个简易小工具,七牛Uploader for Octopress

    和Octopress集成 修改Octopress的Rakefile文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 desc "Default deploy task" task

    43530发布于 2018-09-05
领券