1

好的 - 我想我已经到处搜索了,我认为这应该是一个重复的问题,但是在查看并尝试了多种事情之后仍然没有基本的 vestal_versions (1.2.2)工作。我处于开发的早期阶段,因此我对其他在 Rails 3.2 和 Ruby 1.9.3 上实际工作的版本控制解决方案持开放态度。

回购所有者正在寻找另一个冠军(也许这应该告诉我一些事情,呵呵),所以如果没有一些 TLC,也许这是不可能的,但如果有人弄清楚了,我会很感激。

谢谢你的时间!

这是我的情况:

  • 最大操作系统 X 10.8.2
  • mac 端口:ruby 1.9.3p194(2012-04-20 修订版 35410)[x86_64-darwin11]
  • 导轨 3.2.8

在我的 Gemfile

stuff...
gem 'mysql2'
gem 'vestal_versions', :git => 'git://github.com/laserlemon/vestal_versions.git'
more stuff...

bundle 告诉我我有: - 使用来自 git://github.com/laserlemon/vestal_versions.git 的vestal_versions (1.2.2) (在master)

我的模型:

class StoryPage < ActiveRecord::Base
  versioned

  belongs_to      :story

  attr_accessible :page_num, :title, :story_version, has_been_deleted, :content
end

从我的控制器:

定义创建

    @story = current_user.stories.create(
      :name => params[:stories][:name] || 'New Story',
      :description => params[:stories][:description] || ''
    )

    # Add a blank page
    @story.story_pages.create(
        :title => 'New Page',
        :page_num => 1,
        :story_version => @story.version
    )
    @story.save

    respond_with(@story) do |format|
      format.html
      format.json
    end
  end

错误输出包含:

> DEPRECATION WARNING: The InstanceMethods module inside
> ActiveSupport::Concern will be no longer included automatically.
> Please define instance methods directly in VestalVersions::Changes
> instead. (called from include at
> /Users/leo_odonnell/.bundler/ruby/1.9.1/vestal_versions-6273df533f85/lib/vestal_versions.rb:109)
>     # and more like that, then
>     NoMethodError (undefined method `class_inheritable_accessor' for #<Class:0x007fa59e5c9400>):
>       app/models/story_page.rb:2:in `<class:StoryPage>'
>       app/models/story_page.rb:1:in `<top (required)>'
>       app/controllers/stories_controller.rb:22:in `create'
4

1 回答 1

0

尝试:捆绑更新 rake

此外,如果您收到 MassAssignmentSecurity::Error 尝试此修复:https ://github.com/laserlemon/vestal_versions/issues/86

于 2013-05-13T21:33:13.493 回答