mont 0.1.1 → 0.1.2
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/README.md +4 -3
- data/Rakefile +0 -9
- data/bin/mont +1 -1
- data/lib/mont.rb +0 -1
- data/lib/mont/version.rb +1 -1
- data/mont.gemspec +2 -1
- metadata +2 -5
- data/lib/cli.rb +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9c5b0393ad98821a95b976a106e348528f9ea1b
|
|
4
|
+
data.tar.gz: 3f382f7480965d6fff69002c4ca51464808d51cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14b5437148e286390e3494bf3b6a22bda76effe8034a167b1f4365b1504c4f9bb1b2ac5b8d948fdf93d312e88e62c2f2ea1a6d35db4690f290d81306cf5fadfa
|
|
7
|
+
data.tar.gz: c5a29e6de2e7583e39c5711defc7d7f3865a2c7c3cd97e75faaa22663eb6cdc2130b046cff2e93393efe495d8d9f9f6c2b6fcfbd538ffd7893ea5e72ced75d21
|
data/README.md
CHANGED
|
@@ -59,8 +59,8 @@ Including contents in your app/public and it will automatically be served as a s
|
|
|
59
59
|
|
|
60
60
|
## Installation
|
|
61
61
|
|
|
62
|
-
1.
|
|
63
|
-
2. run ```
|
|
62
|
+
1. run ```gem install mont```
|
|
63
|
+
2. run ```mont install {your preferred app name}```
|
|
64
64
|
3. make a controller
|
|
65
65
|
|
|
66
66
|
```
|
|
@@ -88,7 +88,8 @@ Including contents in your app/public and it will automatically be served as a s
|
|
|
88
88
|
post Regexp.new("^/doges$"), DogesController, :create
|
|
89
89
|
end
|
|
90
90
|
```
|
|
91
|
-
5. start the server with ```bundle exec rackup config/server.rb```
|
|
91
|
+
<!-- 5. start the server with ```bundle exec rackup config/server.rb``` -->
|
|
92
|
+
5. start the server with ```mont server```
|
|
92
93
|
|
|
93
94
|
## Contributing
|
|
94
95
|
|
data/Rakefile
CHANGED
data/bin/mont
CHANGED
data/lib/mont.rb
CHANGED
data/lib/mont/version.rb
CHANGED
data/mont.gemspec
CHANGED
|
@@ -24,7 +24,8 @@ Gem::Specification.new do |spec|
|
|
|
24
24
|
|
|
25
25
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
26
26
|
spec.bindir = "bin"
|
|
27
|
-
spec.executables = spec.files.grep(%r{^
|
|
27
|
+
# spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
28
|
+
spec.executables = ["mont"]
|
|
28
29
|
spec.require_paths = ["lib"]
|
|
29
30
|
|
|
30
31
|
spec.add_dependency 'thor'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mont
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mac Siri
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -112,9 +112,7 @@ description: This is still WIP
|
|
|
112
112
|
email:
|
|
113
113
|
- krairit.siri@gmail.com
|
|
114
114
|
executables:
|
|
115
|
-
- console
|
|
116
115
|
- mont
|
|
117
|
-
- setup
|
|
118
116
|
extensions: []
|
|
119
117
|
extra_rdoc_files: []
|
|
120
118
|
files:
|
|
@@ -127,7 +125,6 @@ files:
|
|
|
127
125
|
- bin/console
|
|
128
126
|
- bin/mont
|
|
129
127
|
- bin/setup
|
|
130
|
-
- lib/cli.rb
|
|
131
128
|
- lib/mont.rb
|
|
132
129
|
- lib/mont/my_mont.rb
|
|
133
130
|
- lib/mont/version.rb
|
data/lib/cli.rb
DELETED
|
File without changes
|