fl 0.3.6 → 0.3.8
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 +4 -4
- data/app/views/application/show.haml +1 -0
- data/config/locales/en.yml +6 -2
- data/config/puma.rb +0 -1
- data/db/seeds.rb +24 -24
- data/lib/fl/constants.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6df4009a629d9db83169fb3d47784e071783970a
|
4
|
+
data.tar.gz: 86340fdd4b5d44f5425f8d58362c13f030d4ce85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3db9a11352a6114a673bf6b813b4ea9f112d3f21a0dad614072141af8f5f99ac4dd72c21c1409f7af37cf9e0f4ed5b0efdaacf0b0f6be948bbb2aa02f88cb4e
|
7
|
+
data.tar.gz: 2fd72d1ba84d1e006cc60fad2f384c9411299218976c3d24a2ef3db18ac8c53f0b61b195b75a484b9843f32cc5d6b3662ed8882c30b5e27e8e887528cde4677f
|
@@ -0,0 +1 @@
|
|
1
|
+
= @content.val
|
data/config/locales/en.yml
CHANGED
data/config/puma.rb
CHANGED
data/db/seeds.rb
CHANGED
@@ -1,36 +1,36 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
##
|
5
|
-
##
|
6
|
-
##
|
7
|
-
##
|
8
|
-
##
|
9
|
-
##
|
10
|
-
##
|
11
|
-
|
12
|
-
|
13
|
-
|
1
|
+
##########################################
|
2
|
+
##########################################
|
3
|
+
##########################################
|
4
|
+
## _____ _ ##
|
5
|
+
## / ___| | | ##
|
6
|
+
## \ `--. ___ ___ __| |___ ##
|
7
|
+
## `--. \/ _ \/ _ \/ _` / __| ##
|
8
|
+
## /\__/ / __/ __/ (_| \__ \ ##
|
9
|
+
## \____/ \___|\___|\__,_|___/ ##
|
10
|
+
## ##
|
11
|
+
##########################################
|
12
|
+
##########################################
|
13
|
+
##########################################
|
14
14
|
|
15
15
|
# => Functions etc
|
16
16
|
include ActiveRecord::Concerns::Seeds
|
17
17
|
|
18
|
-
|
19
|
-
|
18
|
+
##########################################
|
19
|
+
##########################################
|
20
20
|
|
21
21
|
# => Data
|
22
22
|
Rails.application.secrets[:seeds].each do |model, refs|
|
23
|
-
|
23
|
+
iterate model, refs
|
24
24
|
end
|
25
25
|
|
26
|
-
|
27
|
-
|
26
|
+
##########################################
|
27
|
+
##########################################
|
28
28
|
|
29
29
|
# => Users
|
30
|
-
User.create!(email: 'admin@example.com', password: 'password', password_confirmation: 'password', send_email: true) unless User.any?
|
30
|
+
User.create!(email: 'admin@example.com', password: 'password', password_confirmation: 'password', send_email: ENV['email'] || true) unless User.any?
|
31
31
|
|
32
|
-
|
33
|
-
|
32
|
+
##########################################
|
33
|
+
##########################################
|
34
34
|
|
35
35
|
# => Files
|
36
36
|
## Seeds ##
|
@@ -76,6 +76,6 @@ if Dir.exists? seeds
|
|
76
76
|
end
|
77
77
|
end
|
78
78
|
|
79
|
-
|
80
|
-
|
81
|
-
|
79
|
+
##########################################
|
80
|
+
##########################################
|
81
|
+
##########################################
|
data/lib/fl/constants.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- R.Peck
|
@@ -353,6 +353,7 @@ files:
|
|
353
353
|
- app/models/profile.rb
|
354
354
|
- app/models/user.rb
|
355
355
|
- app/service/flash.rb
|
356
|
+
- app/views/application/show.haml
|
356
357
|
- app/views/layouts/_admin.haml
|
357
358
|
- app/views/layouts/_application.haml
|
358
359
|
- app/views/layouts/base.haml
|