mvc_one 0.1.0.pre.rc4 → 0.1.0.pre.rc5
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/Gemfile.lock +1 -1
- data/exe/mvc_one +12 -3
- data/lib/mvc_one/application.rb +1 -1
- data/lib/mvc_one/version.rb +1 -1
- data/templates/config/routes_rb.erb +2 -0
- data/templates/general/application_rb.erb +3 -1
- data/templates/general/database_yml.erb +2 -2
- data/templates/general/gemfile.erb +3 -1
- data/templates/general/secrets_yml.erb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69e5e06df9043af06f3c3cad8f62755e91a772a2b894726f7a5f49edb566ae60
|
4
|
+
data.tar.gz: 984bfbd6a6428678c6096e300cc0a0c161f80ccf01a04eeb6d259020c25178b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 864f1663d0f62f71dcaa7cdc46dd6adff1b67bec0ff5a7b0530bac44e149b4207dd252936a0b7194e4371b457457c65a616bb352fad6c4247eeeac543555f582
|
7
|
+
data.tar.gz: 7902064cb8b39c02722285d7692fc1c6a588fac5039bd1af54d6789bc0827629892cd1b410c1e536537b7926e6c5ba743415317231291dbc174f39c20cf6b4bf
|
data/Gemfile.lock
CHANGED
data/exe/mvc_one
CHANGED
@@ -82,6 +82,15 @@ module MvcOne
|
|
82
82
|
|
83
83
|
gemfile = ERB.new(File.read(File.join(gem_path, 'templates/general/gemfile.erb')))
|
84
84
|
File.write "#{name_normalized}/Gemfile", gemfile.result(binding)
|
85
|
+
|
86
|
+
app_layout = ERB.new(File.read(File.join(gem_path, 'templates/app/application_layout.slim.erb')))
|
87
|
+
File.write "#{name_normalized}/app/views/application_layout.slim", app_layout
|
88
|
+
|
89
|
+
welcome_controller = ERB.new(File.read(File.join(gem_path, 'templates/app/welcome_controller_rb.erb')))
|
90
|
+
File.write "#{name_normalized}/app/controllers/welcome_controller.rb", welcome_controller.result(binding)
|
91
|
+
|
92
|
+
welcome_index = ERB.new(File.read(File.join(gem_path, 'templates/app/welcome_index.slim')))
|
93
|
+
File.write "#{name_normalized}/app/views/welcome/index.slim", welcome_index
|
85
94
|
end
|
86
95
|
|
87
96
|
def make_default_dirs(root_dir_name)
|
@@ -98,10 +107,10 @@ module MvcOne
|
|
98
107
|
Dir.mkdir("#{root_dir_name}/app/#{dir_name}")
|
99
108
|
end
|
100
109
|
end
|
101
|
-
end
|
102
110
|
|
103
|
-
|
104
|
-
|
111
|
+
def gem_path
|
112
|
+
File.expand_path("#{File.dirname(__FILE__)}/..")
|
113
|
+
end
|
105
114
|
end
|
106
115
|
end
|
107
116
|
|
data/lib/mvc_one/application.rb
CHANGED
data/lib/mvc_one/version.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
development:
|
2
2
|
db:
|
3
|
-
|
3
|
+
name: '<%= name_normalized%>.db'
|
4
4
|
adapter: 'sqlite'
|
5
5
|
connection_line: 'sqlite://db/<%= name_normalized%>.db'
|
6
6
|
path: './db/<%= name_normalized%>.db'
|
7
7
|
test:
|
8
8
|
db:
|
9
|
-
|
9
|
+
name: '<%= name_normalized%>.db'
|
10
10
|
adapter: 'sqlite'
|
11
11
|
connection_line: 'sqlite://db/test_<%= name_normalized%>.db'
|
12
12
|
path: './db/test_<%= name_normalized%>.db'
|
@@ -1,4 +1,4 @@
|
|
1
1
|
development:
|
2
|
-
session_cookie: ""
|
2
|
+
session_cookie: "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
|
3
3
|
test:
|
4
|
-
session_cookie: ""
|
4
|
+
session_cookie: "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
|