用于轨道的宝石建造发电机4

时间:2015-03-04 08:53:10

标签: ruby-on-rails-4 gem rails-generators

我已经看过并尝试过使用发生器创建宝石的各种事情。也许我的疲惫让我忘记了某些事情,或者只是因为我缺乏经验。无论哪种方式,我试图了解如何构建一个简单的生成器宝石,以便我可以在未来的项目中重用代码。是的我正在构建已经存在的东西,但作为一个学习者,我更有兴趣了解如何构建宝石,以便我可以在将来贡献一些更有意义的东西,而不是仅仅使用已经制作的宝石而不知道真正的东西上。所以进一步说,我的代码看起来像这样:

tree for simpauth
-lib
 -generators
  -simpauth
   -templates
    sessions.rb
   install_generator.rb
 -simpauth
 simpauth.rb

这是我的generator / simpauth / install_generator.rb

的代码
require 'rails/generators'

module Simpauth
  class InstallGenerator < ::Rails::Generators::Base
    source_root File.expand_path('../templates', __FILE__)
    desc "Creating simple and customizable authentication"

    def add_session
        copy_file "sessions.rb", "app/controllers/sessions_controller.rb"
    end
  end
end

my generators / simpauth / templates / sessions.rb

class SessionsController < ApplicationController
  def new
  end

  def create
    user = User.find_by(email: params[:session][:email])
    if user && user.authenticate(params[:session][:password])
        #login user and redirect to user_path
        log_in user
        params[:session][:remember_me] == '1' ? remember(user) : forget(user)
        redirect_to user
    else
        flash.now[:danger] = "invalid email and/or password"
        render 'new'
    end
  end

  def destroy
    log_out if logged_in?
    redirect_to root_url
  end

end

和lib / simpauth.rb

require "simpauth/version"
require 'rails'

module Simpauth
  class Engine < Rails::Engine
  end
end

也是simpauth.gemspec

# coding: utf-8
$:.push File.expand_path('../lib', __FILE__)
require 'simpauth/version'

Gem::Specification.new do |spec|
  spec.name          = "simpauth"
  spec.version       = Simpauth::VERSION
  spec.authors       = ["My Name"]
  spec.email         = ["my_email@example.com"]
  spec.summary       = %q{Simplified authentication}
  spec.description   = %q{}
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.7"
  spec.add_development_dependency "rake", "~> 10.0"
end

非常感谢任何帮助。

编辑 - 此代码在rails应用程序中按预期工作。当作为宝石安装时,我无法通过轨道来识别发电机。

1 个答案:

答案 0 :(得分:0)

我能够发现我的问题与我的gemspec文件有关。具体使用spec.file赋值。我改变了:

spec.file = `git ls-files -z`.split("\x0")

spec.file = Dir["{lib,vendor}/**/*"]

解决了我的问题。