Sha256: bc09bf0581cb637948b60655fa74fbb14de2df27476879064f275cee009b84ec

Contents?: true

Size: 417 Bytes

Versions: 30

Compression:

Stored size: 417 Bytes

Contents

require 'support/protobuf/tag.pb'

##
# Define a generic class that inherits from active remote base
#
class Tag < ::ActiveRemote::Base
  service_class ::Generic::Remote::TagService

  attribute :guid
  attribute :name
  attribute :updated_at
  attribute :user_guid

  after_update :after_update_callback
  after_create :after_create_callback

  def after_create_callback
  end

  def after_update_callback
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
active_remote-2.3.2 spec/support/models/tag.rb
active_remote-2.3.1 spec/support/models/tag.rb
active_remote-2.3.0 spec/support/models/tag.rb
active_remote-2.2.0 spec/support/models/tag.rb
active_remote-2.1.1 spec/support/models/tag.rb
active_remote-2.1.0 spec/support/models/tag.rb
active_remote-2.1.0.rc2 spec/support/models/tag.rb
active_remote-2.1.0.rc1 spec/support/models/tag.rb
active_remote-2.1.0.beta2 spec/support/models/tag.rb
active_remote-2.1.0.beta1 spec/support/models/tag.rb