Sha256: 7c7ebcc10fc633e100454decb914a7fff58ae89a84826fea39b395c3cba0eb11

Contents?: true

Size: 699 Bytes

Versions: 17

Compression:

Stored size: 699 Bytes

Contents

# Representation of attributes of a user in the database
#
# @!attribute email
#   @return [String] E-mail address (from Devise)
class Attributes
  # @return [String] Username (from Devise)
  attr_accessor :username
end


# Representation of attributes of a user in the database
#
class AttributesAccessor
  attr_accessor :username
  # @!attribute email
  #   @return [String] E-mail address (from Devise)
  attr_accessor :email
end


# Representation of attributes of a user in the database
#
class AttributesStruct < Struct.new(:email, :username)
  # @!attribute email
  #   @return [String] E-mail address (from Devise)
  # @!attribute username
  #   @return [String] Username (from Devise)
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
inch-0.9.0.rc1 test/fixtures/ruby/simple/lib/directives.rb
inch-0.8.0 test/fixtures/ruby/simple/lib/directives.rb
inch-0.8.0.rc2 test/fixtures/ruby/simple/lib/directives.rb
inch-0.8.0.rc1 test/fixtures/ruby/simple/lib/directives.rb
inch-0.7.1 test/fixtures/ruby/simple/lib/directives.rb
inch-0.7.0 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.4 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.3 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.2 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.1 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.0 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.0.rc6 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.0.rc5 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.0.rc4 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.0.rc3 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.0.rc2 test/fixtures/ruby/simple/lib/directives.rb
inch-0.6.0.rc1 test/fixtures/ruby/simple/lib/directives.rb