@@ -11,71 +11,13 @@ require 'fileutils'
11
11
require 'yaml'
12
12
13
13
require 'lissio'
14
- require 'opal/browser'
15
14
16
15
class CLI < Thor
17
- desc "start" , "start the lissio server"
18
-
19
- option :server , type : :string
20
- option :port , type : :numeric
21
- option :host , type : :string
22
- option :require , type : :array , default : [ ]
23
- option :use , type : :array , default : [ ]
24
- option :path , type : :array , default : [ 'app' , 'js' , 'opal' ]
25
- option :static , type : :array , default : [ '/css' , '/fonts' , '/img' ]
26
- option :index , type : :string
27
- option :debug , type : :boolean
28
-
29
- def start
30
- options = self . options . dup
31
-
32
- if File . readable? 'lissio.yml'
33
- YAML . load_file ( 'lissio.yml' ) . tap { |opts |
34
- %w[ server port host index debug ] . each { |name |
35
- if opts . has_key? ( name ) && !options . has_key? ( name )
36
- options [ name ] = opts [ name ]
37
- end
38
- }
39
-
40
- %w[ use require path static ] . each { |name |
41
- if opts . has_key? name
42
- options [ name ] = Array ( opts [ name ] )
43
- end
44
- }
45
- }
46
- end
47
-
48
- options [ :require ] . each { |r |
49
- require r
50
- }
51
-
52
- options [ :use ] . each { |u |
53
- Opal . use_gem u
54
- }
55
-
56
- Rack ::Server . start (
57
- Host : options [ :host ] || '0.0.0.0' ,
58
- Port : options [ :port ] || 9292 ,
59
- server : options [ :server ] ,
60
-
61
- app : Lissio ::Server . new { |s |
62
- options [ :path ] . each { |path |
63
- s . append_path path
64
- }
65
-
66
- s . static = options [ :static ]
16
+ desc "new [PATH]" , "create a new lissio application"
67
17
68
- if index = options [ :index ]
69
- s . index = index
70
- end
18
+ option :adapter , type : :string
19
+ option :components , type : :string
71
20
72
- if options [ :debug ]
73
- s . debug = true
74
- end
75
- } )
76
- end
77
-
78
- desc "new [PATH]" , "create a new lissio application"
79
21
def new ( path = '.' )
80
22
FileUtils . mkpath path
81
23
FileUtils . cd path do
@@ -131,6 +73,114 @@ class CLI < Thor
131
73
end
132
74
end
133
75
end
76
+
77
+ desc "start" , "start the lissio server"
78
+
79
+ option :server , aliases : '-S' , type : :string
80
+ option :port , aliases : '-p' , type : :numeric
81
+ option :host , type : :string
82
+ option :main , aliases : '-m' , type : :string
83
+ option :require , aliases : '-r' , type : :array , default : [ ]
84
+ option :use , aliases : '-u' , type : :array , default : [ ]
85
+ option :path , type : :array , default : [ 'app' , 'js' , 'opal' ]
86
+ option :static , aliases : '-s' , type : :array , default : [ '/css' , '/fonts' , '/img' ]
87
+ option :index , aliases : '-i' , type : :string
88
+ option :debug , aliases : '-d' , type : :boolean
89
+
90
+ def start
91
+ options = prepare
92
+
93
+ Rack ::Server . start (
94
+ Host : options [ :host ] || '0.0.0.0' ,
95
+ Port : options [ :port ] || 9292 ,
96
+ server : options [ :server ] ,
97
+
98
+ app : Lissio ::Server . new { |s |
99
+ options [ :path ] . each { |path |
100
+ s . append_path path
101
+ }
102
+
103
+ s . static = options [ :static ]
104
+
105
+ if main = options [ :main ]
106
+ s . main = main
107
+ end
108
+
109
+ if index = options [ :index ]
110
+ s . index = index
111
+ end
112
+
113
+ if options [ :debug ]
114
+ s . debug = true
115
+ end
116
+ } )
117
+ end
118
+
119
+ desc "build [PATH]" , "create a server-less distribution of the application"
120
+
121
+ option :main , aliases : '-m' , type : :string
122
+ option :require , aliases : '-r' , type : :array , default : [ ]
123
+ option :use , aliases : '-u' , type : :array , default : [ ]
124
+ option :path , type : :array , default : [ 'app' , 'js' , 'opal' ]
125
+ option :index , aliases : '-i' , type : :string
126
+ option :force , aliases : '-f' , type : :boolean , default : false
127
+
128
+ def build ( output = 'index.html' )
129
+ if !options [ :force ] && File . exists? ( output )
130
+ raise ArgumentError , "'#{ output } ' already exists"
131
+ end
132
+
133
+ options = prepare
134
+
135
+ File . open output , 'w' do |f |
136
+ builder = Lissio ::Builder . new { |b |
137
+ options [ :path ] . each { |path |
138
+ b . append_path path
139
+ }
140
+
141
+ if main = options [ :main ]
142
+ b . main = main
143
+ end
144
+
145
+ if index = options [ :index ]
146
+ b . index = index
147
+ end
148
+ }
149
+
150
+ f . write builder . build
151
+ end
152
+ end
153
+
154
+ private
155
+ def prepare
156
+ options = self . options . dup
157
+
158
+ if File . readable? 'lissio.yml'
159
+ YAML . load_file ( 'lissio.yml' ) . tap { |opts |
160
+ %w[ server port host index debug main ] . each { |name |
161
+ if opts . has_key? ( name ) && !options . has_key? ( name )
162
+ options [ name ] = opts [ name ]
163
+ end
164
+ }
165
+
166
+ %w[ use require path static ] . each { |name |
167
+ if opts . has_key? name
168
+ options [ name ] = Array ( opts [ name ] )
169
+ end
170
+ }
171
+ }
172
+ end
173
+
174
+ options [ :require ] . each { |r |
175
+ require r
176
+ }
177
+
178
+ options [ :use ] . each { |u |
179
+ Opal . use_gem u
180
+ }
181
+
182
+ options
183
+ end
134
184
end
135
185
136
186
CLI . start ( ARGV )
0 commit comments