Class: Hydra::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/hydra/config.rb

Defined Under Namespace

Classes: InheritablePermissionsConfig, PermissionsConfig

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



3
4
5
6
# File 'lib/hydra/config.rb', line 3

def initialize
  @permissions = PermissionsConfig.new
  @user_model = 'User'
end

Instance Attribute Details

#permissionsObject

Returns the value of attribute permissions.



30
31
32
# File 'lib/hydra/config.rb', line 30

def permissions
  @permissions
end

#user_modelObject

Returns the value of attribute user_model.



31
32
33
# File 'lib/hydra/config.rb', line 31

def user_model
  @user_model
end

Instance Method Details

#[](key) ⇒ Object



19
20
21
22
23
24
25
26
27
28
# File 'lib/hydra/config.rb', line 19

def [] key
  case key
    when :permissions
      permissions
    when :user_model
      user_model
    else
      raise "Unknown key #{key}"
  end
end

#[]=(key, value) ⇒ Object



8
9
10
11
12
13
14
15
16
17
# File 'lib/hydra/config.rb', line 8

def []= key, value
  case key
    when :permissions
      self.permissions = value
    when :user_model
      self.user_model = value
    else
      raise "Unknown key"
  end
end