`
xhanxhanxhan
  • 浏览: 207437 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

rake 常用命令

    博客分类:
  • RUBY
阅读更多
rake db:abort_if_pending_migrations  # Raises an error if there are pending migrations
rake db:charset                      # Retrieves the charset for the current environment's database
rake db:collation                    # Retrieves the collation for the current environment's database
rake db:create                       # Create the database defined in config/database.yml for the current RAILS_ENV
rake db:create:all                   # Create all the local databases defined in config/database.yml
rake db:drop                         # Drops the database for the current RAILS_ENV
rake db:drop:all                     # Drops all the local databases defined in config/database.yml
rake db:fixtures:identify            # Search for a fixture given a LABEL or ID.
rake db:fixtures:load                # Load fixtures into the current environment's database.
rake db:migrate                      # Migrate the database through scripts in db/migrate.
rake db:migrate:down                 # Runs the "down" for a given migration VERSION.
rake db:migrate:redo                 # Rollbacks the database one migration and re migrate up.
rake db:migrate:reset                # Resets your database using your migrations for the current environment
rake db:migrate:up                   # Runs the "up" for a given migration VERSION.
rake db:reset                        # Drops and recreates the database from db/schema.rb for the current environment.
rake db:rollback                     # Rolls the schema back to the previous version.
rake db:schema:dump                  # Create a db/schema.rb file that can be portably used against any DB supported by AR
rake db:schema:load                  # Load a schema.rb file into the database
rake db:sessions:clear               # Clear the sessions table
rake db:sessions:create              # Creates a sessions migration for use with CGI::Session::ActiveRecordStore
rake db:structure:dump               # Dump the database structure to a SQL file
rake db:test:clone                   # Recreate the test database from the current environment's database schema
rake db:test:clone_structure         # Recreate the test databases from the development structure
rake db:test:load                    # Recreate the test database from the current schema.rb
rake db:test:prepare                 # Check for pending migrations and load the test schema
rake db:test:purge                   # Empty the test database
rake db:version                      # Retrieves the current schema version number
rake doc:app                         # Build the app HTML Files
rake doc:clobber_app                 # Remove rdoc products
rake doc:clobber_plugins             # Remove plugin documentation
rake doc:clobber_rails               # Remove rdoc products
rake doc:guides                      # Generate Rails guides
rake doc:plugins                     # Generate documentation for all installed plugins
rake doc:rails                       # Build the rails HTML Files
rake doc:reapp                       # Force a rebuild of the RDOC files
rake doc:rerails                     # Force a rebuild of the RDOC files
rake gems                            # List the gems that this rails application depends on
rake gems:build                      # Build any native extensions for unpacked gems
rake gems:install                    # Installs all required gems for this application.
rake gems:refresh_specs              # Regenerate gem specifications in correct format.
rake gems:unpack                     # Unpacks the specified gem into vendor/gems.
rake gems:unpack:dependencies        # Unpacks the specified gems and its dependencies into vendor/gems
rake log:clear                       # Truncates all *.log files in log/ to zero bytes
rake notes                           # Enumerate all annotations
rake notes:custom                    # Enumerate a custom annotation, specify with ANNOTATION=WTFHAX
rake notes:fixme                     # Enumerate all FIXME annotations
rake notes:optimize                  # Enumerate all OPTIMIZE annotations
rake notes:todo                      # Enumerate all TODO annotations
rake rails:freeze:edge               # Lock to latest Edge Rails, for a specific release use RELEASE=1.2.0
rake rails:freeze:gems               # Lock this application to the current gems (by unpacking them into vendor/rails)
rake rails:unfreeze                  # Unlock this application from freeze of gems or edge and return to a fluid use of system gems
rake rails:update                    # Update both configs, scripts and public/javascripts from Rails
rake rails:update:configs            # Update config/boot.rb from your current rails install
rake rails:update:javascripts        # Update your javascripts from your current rails install
rake rails:update:scripts            # Add new scripts to the application script/ directory
rake routes                          # Print out all defined routes in match order, with names.
rake secret                          # Generate a crytographically secure secret key.
rake stats                           # Report code statistics (KLOCs, etc) from the application
rake test                            # Run all unit, functional and integration tests
rake test:benchmark                  # Run tests for benchmarkdb:test:prepare / Benchmark the performance tests
rake test:functionals                # Run tests for functionalsdb:test:prepare / Run the functional tests in test/functional
rake test:integration                # Run tests for integrationdb:test:prepare / Run the integration tests in test/integration
rake test:plugins                    # Run tests for pluginsenvironment / Run the plugin tests in vendor/plugins/*/**/test (or specify with PLUGIN=name)
rake test:profile                    # Run tests for profiledb:test:prepare / Profile the performance tests
rake test:recent                     # Run tests for recentdb:test:prepare / Test recent changes
rake test:uncommitted                # Run tests for uncommitteddb:test:prepare / Test changes since last checkin (only Subversion and Git)
rake test:units                      # Run tests for unitsdb:test:prepare / Run the unit tests in test/unit
rake time:zones:all                  # Displays names of all time zones recognized by the Rails TimeZone class, grouped by offset.
rake time:zones:local                # Displays names of time zones recognized by the Rails TimeZone class with the same offset as the system local time
rake time:zones:us                   # Displays names of US time zones recognized by the Rails TimeZone class, grouped by offset.
rake tmp:cache:clear                 # Clears all files and directories in tmp/cache
rake tmp:clear                       # Clear session, cache, and socket files from tmp/
rake tmp:create                      # Creates tmp directories for sessions, cache, and sockets
rake tmp:pids:clear                  # Clears all files in tmp/pids
rake tmp:sessions:clear              # Clears all files in tmp/sessions
rake tmp:sockets:clear               # Clears all files in tmp/sockets
分享到:
评论
2 楼 xhanxhanxhan 2009-05-25  
Hooopo 写道

google到了这里。。。哇咔咔


其实我现在发现只需要 rake -T 就全出来了。
而且包括自己添加的rake 命令。
1 楼 Hooopo 2009-05-24  
google到了这里。。。哇咔咔

相关推荐

    ruby命令集合(一些有用的命令)

    本文将详细介绍一些常用的Rails命令及其用途,帮助开发者更好地理解和掌握Rails的使用方法。 #### 1. 创建一个Rails应用程序 创建一个新的Rails应用程序是开发流程的第一步。可以通过以下命令来完成这一操作: ``...

    Rails3常用命令行命令

    在本文中,我们将深入探讨Rails3中的常用命令,帮助你更高效地进行开发工作。 首先,新建一个Rails项目是开发的起点。你可以使用以下命令创建一个新的工程: ```bash rails new 工程名 ``` 这会生成一个包含所有...

    Ruby包管理器gem常用命令

    下面是gem一些常用命令的详细解释: 1. 获取帮助和版本信息 使用gem命令时,可以通过-h或--help选项来获取帮助信息,这能展示gem命令所有可用的参数和用途,帮助用户了解如何使用gem。-v或--version选项可以用来...

    毕业设计(论文)-基于MATLAB的CDMA-RAKE接收机仿真.doc

    CDMA-RAKE 接收机是一种常用的码分多址接收机,广泛应用于无线通信系统中。基于 MATLAB 的 CDMA-RAKE 接收机仿真可以模拟实际的接收机系统,验证其性能。 2.1 CDMA-RAKE 接收机的原理 CDMA-RAKE 接收机的原理是...

    java基础之rails命令大全.pdf

    对于初学者来说,熟悉 Rails 的常用命令是非常重要的一步。 #### 二、创建 Rails 应用程序 **命令**: `rails new app_name` - **功能**: 创建一个新的 Rails 应用程序。 - **参数**: - `-d, --database=DATABASE`...

    rails有用的命令

    以上就是Rails中一些常用的命令和概念,它们构成了Rails开发的基础。理解并熟练掌握这些命令,能大大提高开发效率。在实际应用中,还需要结合Rails的路由、过滤器、插件、测试等方面的知识,才能构建出功能完备、...

    githug使用指南

    Githug是一款使用Ruby语言编写的git冲关游戏,旨在帮助用户以游戏的方式学习和掌握Git的常用命令和操作流程。在开始使用Githug之前,玩家需要确保自己的计算机上已经安装了Ruby环境。由于文章中提到的“代理后面”,...

    tdd-rails-pluralsight:使用RSpec,Capybara和Cucumber以及Pluralsight课程学习Rails的TDD

    用生成的目录测试新动作并显示动作测试创建动作测试... 常用命令命令描述bin/rails s 启动Rails服务器bin/rails c 启动Rails控制台bundle exec rake routes 列出所有路线bin/rspec 运行所有Rspec测试bin/rspec spec/c

    最全的GitLab安装使用教程

    GitLab 常用命令: 1. 启动所有 GitLab 组件:sudo gitlab-ctl start 2. 停止所有 GitLab 组件:sudo gitlab-ctl stop 3. 重启所有 GitLab 组件:sudo gitlab-ctl restart 4. 查看服务状态:sudo gitlab-ctl status...

    ruby-wm-sample:样本回购

    2. **捆绑安装**:在Ruby环境中,"bundle install"是一个常用命令,用于安装项目Gemfile中列出的所有依赖库。Gemfile是Ruby项目中管理依赖的文件,确保所有必要的库和框架都在正确版本下运行。 3. **耙运行**:这里...

    Linux ruby

    开发过程中,`irb`(交互式Ruby shell)和`rake`(Ruby的Make工具)是常用的命令行工具。`irb`允许你即时测试代码,而`rake`则用于执行任务,如运行测试或构建项目。 对于调试,可以使用`byebug` gem,它提供了一个...

    配置rails环境

    **了解Rails命令**:Rails提供了一系列的命令行工具,如`rails generate`(用于生成模型、控制器、迁移等),`rails console`(提供了一个交互式的Ruby环境,方便测试和调试),`rails dbconsole`(直接进入数据库...

    VIM的Rails编辑插件rails.vim.zip

    rails.vim提供了常用的一些命令,可以帮助开发,例如:Rgenerate, Rake, Rfind,RTview等,很方便,也很实用。 安装方法: 拷贝 autoload/rails.vim, plugin/rails.vim, 和 doc/rails.txt 到 ~/.vim 目录. ...

    linux-aliases为bash提供上下文动态分组的别名

    `bash`是Linux中最常见的默认shell,它支持别名功能,允许用户为常用的命令创建简短的替代名。然而,随着工作环境的复杂化,单一的别名设置可能无法满足所有场景的需求。这就是"linux-aliases"项目的意义所在,它为`...

    Ruby-使用Procfile和Systemd像HerokuCLI一样轻松管理生产中的应用程序流程

    `Procfile` 和 `Systemd` 是两种常用工具,它们可以帮助开发者模仿Heroku CLI的管理模式,确保服务的稳定性和可扩展性。让我们深入了解一下这两个概念以及如何将它们结合使用。 **Procfile** `Procfile` 是Heroku...

    yangbinfx的博客文章-ruby部分备份

    5. **ror命令记录**:Rails命令行工具(RoR或Rails命令)是开发过程中常用的一部分,包括创建新项目、生成模型、控制器、迁移等,记录这些命令有助于记忆和提高开发效率。 6. **编译工具**:Ruby是解释执行的语言,...

    centOS Rails3环境搭建

    可以通过`rake doc:rails`命令生成Rails API文档: ```bash rake doc:rails ``` 文档将保存在项目的`doc/api`目录下。 ##### 8. 数据模型、控制器与迁移 - **数据模型**:使用`scaffold`命令快速创建模型和相关...

    docs-1.x:Papi 1.x的文档

    在现代的 JavaScript 开发环境中,`bundle install` 是一个常用命令,它来自于 Ruby 的 Bundler 工具,用于管理项目依赖。当你看到 "bundle install" 这个指令时,意味着你需要先确保已经安装了 Bundler,然后在项目...

    ruby文本编辑器scite

    4. **插件扩展**:Scite拥有丰富的插件系统,例如`scite-ruby-tools`插件集成了许多常用的Ruby开发工具,如`bundle`, `rake`, `gem`等命令。 **优化Scite的Ruby开发体验** 为了更好地适应Ruby开发,你可以进一步...

Global site tag (gtag.js) - Google Analytics