Mattias

Results 8 issues of Mattias

So I'm easily able to go up with the migrations on Capistrano deploy. I would like to implement going down on Capistrano rollback, how would you go about that? Something...

Is this something that could be added to the gem? ``` # Public: Checks whether the subject has a tag or not # # tag - The Symbol name of...

feature
discuss

I've wanted to do something like this ``` class Post include Mongoid::Document include Mongoid::TaggableWithContext include Mongoid::TaggableWithContext::AggregationStrategy::RealTime field :state taggable end ``` Then to be able to do: ``` Post.create(state: 'published',...

discuss

Hi @twoixter, hope all is well. Any chance you could make a 0.4.1 release with the "newly" bumped Mongoid 3.1? Thanks.

I have set up a User model and a Manager model with Single Table inheritance like this : ``` class User < ActiveRecord::Base include Tenacity t_has_many :posts, :foreign_key => "user_id"...

feature

So I have my template in a namespaced Engine `app/views/scheduler/schedules/show` ``` Rabl::Renderer.new( 'schedules/show', @schedules, view_path: 'app/views/scheduler', format: :json ).render ``` ``` Rabl::Renderer.json( @schedules, 'schedules/show', view_path: 'app/views/scheduler' ) ``` Both raises...

Question