rails_admin_settings 0.9.0.pre.3 → 0.9.0.pre.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0dc67f18c73937aed82fdd84a72a9b283522fa0c
|
4
|
+
data.tar.gz: f156ab1e62e4f421af5a807efa412b4d4d6e764e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 356eb09a8ce3a385c7712989f485259529a1aa03d075c3a682794b63c86ce42fc2a633e7b0aed1e9eda8dac07395b9516e04e2efb55f57d3ae5034e52fec1142
|
7
|
+
data.tar.gz: bbdc06db4c3f737ab452ac28f18853cacf76991bf0714ada93d0c17432ec6402c4edca3a426cd6562fa720fc7e4af395b5a4dde32ace81916344df1ef745d015
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rails_admin_settings (0.9.0.pre.
|
4
|
+
rails_admin_settings (0.9.0.pre.4)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -127,12 +127,12 @@ GEM
|
|
127
127
|
rspec-mocks (~> 3.1.0)
|
128
128
|
rspec-core (3.1.4)
|
129
129
|
rspec-support (~> 3.1.0)
|
130
|
-
rspec-expectations (3.1.
|
130
|
+
rspec-expectations (3.1.2)
|
131
131
|
diff-lcs (>= 1.2.0, < 2.0)
|
132
132
|
rspec-support (~> 3.1.0)
|
133
|
-
rspec-mocks (3.1.
|
133
|
+
rspec-mocks (3.1.2)
|
134
134
|
rspec-support (~> 3.1.0)
|
135
|
-
rspec-support (3.1.
|
135
|
+
rspec-support (3.1.1)
|
136
136
|
russian_phone (0.4.1)
|
137
137
|
mongoid (>= 3.0.0)
|
138
138
|
safe_yaml (1.0.3)
|
@@ -2,7 +2,7 @@ class CreateRailsAdminSettings < ActiveRecord::Migration
|
|
2
2
|
def change
|
3
3
|
create_table :rails_admin_settings do |t|
|
4
4
|
t.boolean :enabled, default: true
|
5
|
-
t.string :
|
5
|
+
t.string :kind, null: false, default: 'string'
|
6
6
|
t.string :ns, default: 'main'
|
7
7
|
t.string :key, null: false
|
8
8
|
if Object.const_defined?('Geocoder')
|