Sha256: 59fc1e6e35b9cc5814bbc5f34e759747e0d1467ffc3cd46b77e673febc752c89

Contents?: true

Size: 1.71 KB

Versions: 1

Compression:

Stored size: 1.71 KB

Contents

class User < ActiveRecord::Base
  belongs_to :group

  def id
    1
  end

  sync :all
  sync_scope :cool, -> { where(cool: true) }
  sync_scope :in_group, ->(group) { where(group_id: group.id)}
  sync_scope :with_group_id, ->(group_id) { where(group_id: group_id)}
  sync_scope :with_min_age_in_group, ->(age, group_id) { where(group_id: group_id).where(["age >= ?", age])}
end

class UserWithoutScopes < ActiveRecord::Base
  self.table_name = :users

  def id
    1
  end
  
  sync :all
end

class UserWithDefaultScope < ActiveRecord::Base
  self.table_name = :users
  belongs_to :group
  
  sync :all, default_scope: :group
end

class UserWithSimpleScope < ActiveRecord::Base
  self.table_name = :users

  sync :all
  sync_scope :old, -> { where(["users.age >= ?", 90]) }
end

class UserWithAdvancedScope < ActiveRecord::Base
  self.table_name = :users
  belongs_to :group
  
  sync :all
  sync_scope :in_group, ->(group) { where(group_id: group.id) }  
end

class UserTouchingGroup < ActiveRecord::Base
  self.table_name = :users
  belongs_to :group
  
  sync :all
  sync_touch :group
end

class UserJustTouchingGroup < ActiveRecord::Base
  self.table_name = :users
  belongs_to :group
  
  sync_touch :group
end

class UserTouchingGroupAndProject < ActiveRecord::Base
  self.table_name = :users
  belongs_to :group
  belongs_to :project
  
  sync :all
  sync_touch :group, :project
end

# Setup test user with protected attributes (only allow cool)
# if Rails < 4 or Rails > 4 with gem protected_attributes
class UserWithProtectedAttributes < ActiveRecord::Base
  attr_accessible :cool if Rails.version < "4"
  self.table_name = :users
  sync :all
end

if Rails.version < "4"
  UserWithProtectedAttributes.mass_assignment_sanitizer = :strict
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
render_sync-0.5.0 test/models/user.rb