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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cd4059725d70c9459669f5b227a93994c8df59a9
4
- data.tar.gz: e2a2ad1052b5cd88f3dbe299f936f1d539ddbbd5
3
+ metadata.gz: b9c5b0393ad98821a95b976a106e348528f9ea1b
4
+ data.tar.gz: 3f382f7480965d6fff69002c4ca51464808d51cf
5
5
  SHA512:
6
- metadata.gz: f709d654e059b88de17dc5eb1e3e0157aaa0c59afb57797b5ecdb32ddcc62437c0558f9e32f5e67935e89c9916aefc8e8120e10d991dd275c28a3f25ee39b14a
7
- data.tar.gz: 6edbc64db00b1ee2cbf66d9e358f90ecdf9ee43dca5ce762f0ef8e61f3900a4ee9ad22208df27e8f28666218d0b34a7a65410c5d8d1b0b88ded32a50d84f520d
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. Fork or clone this repo.
63
- 2. run ```bundle install```
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
@@ -1,11 +1,2 @@
1
1
  require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
2
  task :default => :spec
6
-
7
- # Rake::TestTask.new do |t|
8
- # t.libs << "test"
9
- # t.test_files = FileList["test/**/*_test.rb"]
10
- # t.verbose = true
11
- # end
data/bin/mont CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'mont'
3
3
 
4
- Mont::MyCLI.start(ARGV)
4
+ Mont::MyCLI.start( ARGV )
data/lib/mont.rb CHANGED
@@ -15,7 +15,6 @@ end
15
15
 
16
16
  class Generator < Thor
17
17
  include Thor::Actions
18
-
19
18
  def self.source_root
20
19
  File.dirname(__FILE__)
21
20
  end
data/lib/mont/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Mont
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
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{^bin/}) { |f| File.basename(f) }
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.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-05 00:00:00.000000000 Z
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