owl-cms 0.1.0 → 0.1.1
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 +1 -1
- data/bin/owl +2 -3
- data/owl-cms.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ba087833c7256f323af89e35db9842ef9dec0f9a
|
|
4
|
+
data.tar.gz: 84f716ae7a3e533a83b39970f9ebfca20fe494c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f02b90ce5a555fbda13d9267c896e7805a1bee709a623d4552ae3b5e7700ea3f6cf8a8087824cdb8552fef42491178bf04e3f783de6b546519b8e5e8e90623e1
|
|
7
|
+
data.tar.gz: 0c4bff6e1fbd1d02f921e9bb10774c57e7d3f8b7969c678baef9be839b3c6f7302ba5b6573247d976268f96558557a99e6eae2f266ecfbe29ecc712bad4b4fbb
|
data/Gemfile
CHANGED
data/bin/owl
CHANGED
|
@@ -10,13 +10,12 @@ GEMFILE = File.join( ROOT, "Gemfile")
|
|
|
10
10
|
class OwlCLI < Thor
|
|
11
11
|
|
|
12
12
|
# -----------------------------------------------------------------------------------------------------------
|
|
13
|
-
#
|
|
13
|
+
# Start Task
|
|
14
14
|
# -----------------------------------------------------------------------------------------------------------
|
|
15
15
|
desc "start", "Startup Owl server for local viewing. (use --port to specify your own port)"
|
|
16
|
-
method_options port: :integer, rerun:
|
|
16
|
+
method_options port: :integer, rerun: false
|
|
17
17
|
def start
|
|
18
18
|
port = options[:port] || 3000
|
|
19
|
-
no_reload = options[:rerun]
|
|
20
19
|
thin_string = "BUNDLE_GEMFILE='#{GEMFILE}' thin start -R #{CONFIG_RU} --port #{port}"
|
|
21
20
|
|
|
22
21
|
puts "\n** Starting OwlCMS\n"
|
data/owl-cms.gemspec
CHANGED