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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ad1d352d59ca7c75b2574cd6fa4f678dd228cfb
4
- data.tar.gz: 475926443d58adcf671c59a2b1071417bb8c248f
3
+ metadata.gz: 6df4009a629d9db83169fb3d47784e071783970a
4
+ data.tar.gz: 86340fdd4b5d44f5425f8d58362c13f030d4ce85
5
5
  SHA512:
6
- metadata.gz: 83de5e5bba325a6600eb0d34495a5ee856a74e6fe045ed3c2488497f05469598a0c482c5cb4860795f73047b53fbc3d8e6a63a2a57f0409fde852adeebc8664d
7
- data.tar.gz: 9656534c01d9a2fb0e3f8ef9399e464b34ee8398a600c425e288e1f88032f7894f28ac88585d8d778cfbf3f6ca13b9b5c019f922fc5486f0f053932211258d22
6
+ metadata.gz: f3db9a11352a6114a673bf6b813b4ea9f112d3f21a0dad614072141af8f5f99ac4dd72c21c1409f7af37cf9e0f4ed5b0efdaacf0b0f6be948bbb2aa02f88cb4e
7
+ data.tar.gz: 2fd72d1ba84d1e006cc60fad2f384c9411299218976c3d24a2ef3db18ac8c53f0b61b195b75a484b9843f32cc5d6b3662ed8882c30b5e27e8e887528cde4677f
@@ -0,0 +1 @@
1
+ = @content.val
@@ -1,8 +1,12 @@
1
1
  en:
2
- exception_handler:
3
- not_found: "Node Not Found"
4
2
  activerecord:
5
3
  models:
4
+ user:
5
+ one: "User"
6
+ other: "Users"
7
+ page:
8
+ one: "Page"
9
+ other: "Pages"
6
10
  meta/option:
7
11
  one: "Option"
8
12
  other: "Options"
@@ -10,7 +10,6 @@
10
10
  ########################################
11
11
  ########################################
12
12
 
13
- workers Integer(ENV['WEB_CONCURRENCY'] || 2)
14
13
  threads_count = Integer(ENV['RAILS_MAX_THREADS'] || 5)
15
14
  threads threads_count, threads_count
16
15
 
@@ -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
- iterate model, refs
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
+ ##########################################
@@ -42,7 +42,7 @@ module FL
42
42
  module VERSION
43
43
  MAJOR = 0
44
44
  MINOR = 3
45
- TINY = 6
45
+ TINY = 8
46
46
  PRE = nil
47
47
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
48
48
  end
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.6
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