active_configuration 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,7 @@ module ActiveConfiguration
10
10
 
11
11
  # To avoid collisions with another Setting model that isn't from
12
12
  # ActiveConfiguration, this model and table is namespaced.
13
- set_table_name ActiveConfiguration::Config.table_name
13
+ self.table_name = ActiveConfiguration::Config.table_name
14
14
 
15
15
  # The model this Setting was created against.
16
16
  belongs_to :configurable, :polymorphic => true
@@ -2,7 +2,7 @@ module ActiveConfiguration
2
2
  class Version
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- PATCH = 0
5
+ PATCH = 1
6
6
  BUILD = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_configuration
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Thomas Mango
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-31 00:00:00 Z
18
+ date: 2012-06-11 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rails
@@ -122,10 +122,10 @@ dependencies:
122
122
  type: :runtime
123
123
  version_requirements: *id007
124
124
  description: |-
125
- ActiveConfiguration is an engine that exposes a generic settings store to
126
- ActiveRecord models. Made for very configurable applications, it allows you
127
- to avoid implementing specific ways to store settings for each model that
128
- needs such configuration. If your application isn't very configurable,
125
+ ActiveConfiguration is an engine that exposes a generic settings store to
126
+ ActiveRecord models. Made for very configurable applications, it allows you
127
+ to avoid implementing specific ways to store settings for each model that
128
+ needs such configuration. If your application isn't very configurable,
129
129
  ActiveConfiguration is probably overkill.
130
130
  email: tsmango@gmail.com
131
131
  executables: []
@@ -178,7 +178,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
178
178
  requirements: []
179
179
 
180
180
  rubyforge_project:
181
- rubygems_version: 1.8.6
181
+ rubygems_version: 1.8.24
182
182
  signing_key:
183
183
  specification_version: 3
184
184
  summary: A generic settings store for Rails 3.x ActiveRecord models.