Sha256: 1aaeaba43a11f1a60587cc25ed8ad6dec3163b88c9df572dd874011e45d5b415

Contents?: true

Size: 391 Bytes

Versions: 1

Compression:

Stored size: 391 Bytes

Contents

# All code in the gem is namespaced under this module.
module CoderWally
    # Stores all CoderWall attributes
    class CoderWall
      # :badges is the collection of user badges
      # :user is the `User` object
      attr_reader :badges, :user

      # Instantiate the class with data
      def initialize(badges, user)
        @badges = badges
        @user = user
      end
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
coder_wally-0.0.6 lib/coder_wally/coder_wall.rb