Coder Social home page Coder Social logo

Comments (8)

troessner avatar troessner commented on July 20, 2024

Hey

I'll take a look into that as soon as possible (the "assign" functionalit isn't working again, grrrr).

from transitions.

alexhanh avatar alexhanh commented on July 20, 2024

Any updates on this?

from transitions.

troessner avatar troessner commented on July 20, 2024

@alexhanh I won't have time to look into this until the weekend unfortunately....

from transitions.

alexhanh avatar alexhanh commented on July 20, 2024

Update?

from transitions.

troessner avatar troessner commented on July 20, 2024

@alexhanh

I can't reproduce your problem.

I did:

rails g scaffold game version:string state:string description:string

with the model being:

https://gist.github.com/1108357

Now look at this console session:

Game.create :version => '1', :description => 'first'
Game.create :version => '2', :description => 'second'

Game.select("DISTINCT(games.version)")
[ < Game version: "1" >, < Game version: "2" > ]

It seems like a problem with your application set up.

If not, you should provide me with an easy to reproduce example, then I'll take a look at it again.

from transitions.

alexhanh avatar alexhanh commented on July 20, 2024

rails new brake_transitions -d postgresql
rails g scaffold game version:string state:string description:string

gem 'transitions', :git => 'git://github.com/qoobaa/transitions.git', :require => ["transitions", "active_record/transitions"]

class Game < ActiveRecord::Base
  include ActiveRecord::Transitions
  state_machine do
    state :stopped
    state :started
  end

  validates_presence_of :version
end

bundle install
rake db:create
rake db:migrate

rails c

Game.create :version => '1', :description => 'first'
Game.create :version => '2', :description => 'second'
Game.select("DISTINCT(games.version)").order('games.version').first

ActiveModel::MissingAttributeError: missing attribute: state

from transitions.

troessner avatar troessner commented on July 20, 2024

Alright, now I can reproduce this. Interestingly, with sqlite the query above runs fine but not with MySql and PostgreSql.

I'll definitely gonna look into this, but I have no idea when since I am pretty loaded right now.

IF this a real problem for you you'll either have to fix it yourself or switch to state_machine.
If not, you'll just have to wait until I find the time.

from transitions.

troessner avatar troessner commented on July 20, 2024

@alexhanh thanks for the patch -> closed.

from transitions.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.