`
rshua
  • 浏览: 23133 次
  • 性别: Icon_minigender_1
  • 来自: jx
文章分类
社区版块
存档分类
最新评论
阅读更多
  • [root@ford depot]# rake --task(或者rake -T)
  • (in /home/xxxx/rails/depot)
  • 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 and update db/schema.rb by invoking db:schema:dump. Target specific version w...
  • 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 and loads the seeds.
  • 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:seed                              # Load the seed data from db/seeds.rb
  • rake db:sessions:clear                    # Clear the sessions table
  • rake db:sessions:create                   # Creates a sessions migration for use with ActiveRecord::SessionStore
  • rake db:setup                             # Create the database, load the schema, and initialize with the seed data
  • 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 RDOC 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 RDOC 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:build:force                     # Force the build of all gems
  • rake gems:install                         # Installs all required gems.
  • rake gems:refresh_specs                   # Regenerate gem specifications in correct format.
  • rake gems:unpack                          # Unpacks all required gems into vendor/gems.
  • rake gems:unpack:dependencies             # Unpacks all required gems and their dependencies into vendor/gems.
  • rake log:clear                            # Truncates all *.log files in log/ to zero bytes
  • rake middleware                           # Prints out your Rack middleware stack
  • 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:template                       # Applies the template supplied by LOCATION=/path/to/template
  • 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:application_controller  # Rename application.rb to application_controller.rb
  • rake rails:update:configs                 # Update config/boot.rb from your current rails install
  • rake rails:update:generate_dispatchers    # Generate dispatcher files in RAILS_ROOT/public
  • 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, sockets, and pids
  • 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

(借阅)
推荐url :http://leeyouser.iteye.com/blog/702601

分享到:
评论

相关推荐

    mess_organizer:使用简单的 rake 命令组织您的文档

    使用简单的 rake 命令整理您的桌面、下载和其他杂乱文件夹。 简单有效。 用法 在开始使用 Mess Organizer 之前,您需要在您的操作系统上安装和 。 如果你已经安装了 Rake gem,只需将这个 repo 克隆到你想要组织的...

    bundler_geminabox:允许您使用 bundler 的 rake 任务发布到 geminabox 服务器

    它允许您使用 bundler 提供的相同友好的 rake 命令来发布 gems。 rake release保留了相同的构建/标记/推送功能,除了它现在被推送到您的私有 gem 存储库。 耶! 用法! 在您的宝石规格中 gem . add_development_...

    reseed:实现 reseed rake 任务的简单 rails gem

    Rails Reseed 在开发中的 rails 应用程序上工作时,您可能希望重新开始...没什么可做的,安装 gem 然后运行 ​​Rake -T 找到闪亮的新 rake 命令。 要运行,只需输入rake db:reseed 测验 要测试 gem,请运行bundle exe

    rails_db_dump:用于万无一失的数据库转储的 Rake 任务

    添加 Rake 命令以转储和恢复应用程序的数据库。 委托常规转储实用程序,例如mysqldump和pg_dump 。 与它们不同的是,您不必记住任何正确的语法。 您也不必指定连接参数; 如果应用程序工作,转储程序也工作。 ...

    heroku-buildpack-smartmigrate:警告开发人员运行 rake db 的简单 Heroku buildpack

    Heroku Buildpack:SmartMigrate更新出于某种原因,我无法让 heroku 编译器 dyno 识别 bundle 或 rake 命令。 作为一种解决方法,如果检测到更改,此 buildpack 仅显示一条消息,要求用户自己运行迁移。 简单的 ...

    rails简单实例_rake数据导入

    来自practical rails social networking sites上的第二章的实例,应用了数据导入,导入数据到mysql后就可以使用,命令: rake db:migrate(进入文件夹"railscoder")

    special_delivery:使用 rake 标记、构建和发布 gem 到您的 geminabox 服务器,就像 Bundler 一样!

    Special Delivery 允许您使用 Bundler 的 rake 命令将 gem 发布到您的 geminabox 服务器。 它的灵感来自 Josh Krueger 的 gem。 安装 打开您的 gemspec 并添加special_delivery作为开发依赖项: Gem :: ...

    radiant-ck_editor_filter-extension:使CKEditor可用作页面部分的过滤器

    运行以下rake命令,将所有需要的文件复制到公用文件夹中: rake radiant:extensions:ck_editor_filter:update 就是这样! 现在,页面编辑屏幕上的过滤器下拉列表中应该具有“ CKEditor”。 选择此选项将生成...

    WatchTheSkiesDashboard:观看天空仪表板

    观看天空仪表板 有关糟糕的旧代码,请参见: : ... 可通过rake -T获得其他rake命令 重要说明:游戏数据都在游戏模型下链接在一起。 此外,用户当前只能属于一个游戏。 要运行测试: bundle exec rspec

    Fantastic4:精彩的活动视觉投票应用程序

    会员 陈玉玺倪燕英张耀仁朱千云 关键跟踪器链接开发备忘录常见的 rake 命令rake db:migrate VERSION=20080906120000 运行所需的迁移,直到达到指定的版本rake db:rollback 回滚上次迁移rake db:setup 创建数据库,...

    garage_client, 用于车库应用程序API的ruby 客户端库.zip

    garage_client, 用于车库应用程序API的ruby 客户端库 GarageClient GarageClient是一个简单的ruby 库,可以为车库应用程序API提供原始客户机接口。安装从rake命令安装:$ bundle install$ rake install

    dotfiles:杂点文件

    如果不运行rake命令,则所有内容都将隔离在.dotfiles目录中,并且不会干扰您的现有环境。 rake install:all Rake会在覆盖任何已存在的文件之前询问您。 您还可以使用以下方法之一安装环境的子集。 rake install:...

    turnout:投票使将Rack应用程序置于维护模式变得容易

    特征简易安装Rake命令打开和关闭维护模式无需提供maintenance.html文件即可轻松提供每次停机的原因允许某些IP或IP范围绕过维护页面允许在维护期间访问某些路径用您自己的文件轻松覆盖默认的maintenance.html文件基于...

    turkee:模糊了Mechanical Turk,Rails和可用性测试之间的界线。

    铁路4支持 ... 检索提交的响应数据并将该数据导入到模型中,仅需再执行一次rake命令。 安装/升级 将turkee作为gem依赖项添加到您的Gemfile中,然后执行“捆绑安装”: gem 'turkee' 如果要升级Turkee(1

    todo:简单的 JSONHAL 所有 API

    setup # this will generate a todos_development and todos_test dbrake db:migrate # runs the migrations in db/migrationsrake db:migrate RAKE_ENV=test # migrate test db 您可以使用默认的rake命令运行规范。...

    cocos2d-x-projects-template:这是cocos2d-x开发的项目模板

    您可以在rake命令中为iOS创建通用二进制文件。 要求 以后的cocos2d-x v3.1.1 已经设置了cocos2d-x的环境变量 如何开始 $ git clone -b < branch> git@github.com:yuuki-arc/cocos2d-x-projects-template.git $ cd ...

    :trollface:通过AirDrop将trollfaces从您的iPad发送到附近的设备!-Swift开发

    用法生成游乐场.playground文件可以使用以下rake命令之一生成:#生成iPad和Xcode rake build#仅生成Xcode rake xcode:build#仅生成iPad rake ipad:build Xcode在Xcode中打开生成的Xcode.playground。...

    queue_dispatcher:在后台执行异步任务

    要安装启动所有工作程序的queue_worker_dispatcher脚本,请执行以下rake命令: rake queue_dispatcher: sync 数据库设置 用 rails g queue_dispatcher: migration 这将为模型Task和TaskQueues创建数据库迁移。 ...

    情感分析器:基于机器学习的情感分析

    每当您启动服务器或运行任何rake命令时,它将运行,希望对此有所投入。 现在,您可以在require "sentimentalizer"之后运行以下命令 Sentimentalizer . analyze ( 'message or tweet or status

    rails-firestarter

    基本轨道应用程序 ...第三步:运行以下rake命令; 变量“app”的值将是您的新应用程序的名称: rake app=app_name fire:starter 第 4 步:cd 进入“new_app”目录 - 配置并准备好 rails 应用程序 第

Global site tag (gtag.js) - Google Analytics