繁体   English   中英

如何在Rails外部的Ruby项目上加载ActiveRecord数据库任务?

[英]How can I load ActiveRecord database tasks on a Ruby project outside Rails?

ActiveRecord 3.2.14

我想在非Rails Ruby项目中使用ActiveRecord。 我希望可以使用ActiveRecord定义的rake任务。 我怎样才能做到这一点?

rake db:create           # Create the database from DATABASE_URL or config/database.yml for the current Rails.env (use db:create:all to create all dbs in the config)
rake db:drop             # Drops the database using DATABASE_URL or the current Rails.env (use db:drop:all to drop all databases)
rake db:fixtures:load    # Load fixtures into the current environment's database
rake db:migrate          # Migrate the database (options: VERSION=x, VERBOSE=false)
rake db:migrate:status   # Display status of migrations
rake db:rollback         # Rolls the schema back to the previous version (specify steps w/ STEP=n)
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:setup            # Create the database, load the schema, and initialize with the seed data (use db:reset to also drop the db first)
rake db:structure:dump   # Dump the database structure to db/structure.sql
rake db:version          # Retrieves the current schema version number

上面的列表是我希望能够在使用ActiveRecord的非Rails Ruby项目上使用的任务列表。 我在Rakefile中要写什么?

提前致谢

最简单的方法是加载已在databases.rake中定义的任务。 这是一个如何完成它的GIST。

灵感来自Drogus的GIST

Rakefile.rb

require 'yaml'
require 'logger'
require 'active_record'

include ActiveRecord::Tasks

class Seeder
  def initialize(seed_file)
    @seed_file = seed_file
  end

  def load_seed
    raise "Seed file '#{@seed_file}' does not exist" unless File.file?(@seed_file)
    load @seed_file
  end
end


root = File.expand_path '..', __FILE__
DatabaseTasks.env = ENV['ENV'] || 'development'
DatabaseTasks.database_configuration = YAML.load(File.read(File.join(root, 'config/database.yml')))
DatabaseTasks.db_dir = File.join root, 'db'
DatabaseTasks.fixtures_path = File.join root, 'test/fixtures'
DatabaseTasks.migrations_paths = [File.join(root, 'db/migrate')]
DatabaseTasks.seed_loader = Seeder.new File.join root, 'db/seeds.rb'
DatabaseTasks.root = root

task :environment do
  ActiveRecord::Base.configurations = DatabaseTasks.database_configuration
  ActiveRecord::Base.establish_connection DatabaseTasks.env.to_sym
end

load 'active_record/railties/databases.rake'

您可以尝试独立迁移gem: https//github.com/thuss/standalone-migrations

对于Rails 3.x:

您需要手动创建任务。 这里的例子是如何添加它们(这个例子使用像Rails这样的环境变量):

  namespace :db do
    desc "Drop and create the current database"
    task :recreate => :environment do
      abcs = ActiveRecord::Base.configurations
      ActiveRecord::Base.establish_connection(abcs[RAILS_ENV])
      ActiveRecord::Base.connection.recreate_database(ActiveRecord::Base.connection.current_database)
    end
  end

你将拥有任务rake db:recreate available

对于Rails 4.x:

如果您想在ruby应用程序中使用ActiveRecord rake任务,请查看文档

在Rails之外使用DatabaseTasks的示例可能如下所示:

include ActiveRecord::Tasks
DatabaseTasks.database_configuration = YAML.load(File.read('my_database_config.yml'))
DatabaseTasks.db_dir = 'db'
# other settings...

DatabaseTasks.create_current('production')

你也需要在这里对如何在Ruby aplication使用ActiveRecord的例子。

创建你自己的! 尽管参考了Rails:

https://github.com/rails/rails/blob/master/activerecord/lib/active_record/railties/databases.rake

  1. 创建一个Rake任务文件。 要使用Rake,通常需要一个填充了Rake任务文件的任务文件夹。 这些文件具有“.task”扩展名。
  2. 研究要链接的文件。
  3. 获取该文件的一部分,甚至文件的全部内容,并将其添加到新的Rake任务文件中。
  4. 确保您的Rakefile加载这些任务文件。 你的Rakefile应该有这样的东西

-

Dir[File.join(PROJECT_ROOT,  'tasks', '**', '*.rake')].each do |file|
  load file
end

即使你没有使用Sinatra,我相信你也可以使用sinatra-activerecord gem。 我刚刚通过要求宝石然后添加来解决这个问题

require 'sinatra/activerecord/rake'

到我的rakefile

一旦我添加了require行, db任务出现在我的rake -T

如果您使用的是Sinatra,则可以使用此gem:

https://github.com/janko-m/sinatra-activerecord

但是,如果您不使用它,则内部源代码提供了有关如何实现AR rake任务的良好示例。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM