minimum-viable-product 0.0.5 → 0.0.6

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: 3e81832ad00033a0f31351f97785e051b0475840
4
- data.tar.gz: e80cb1f400d09e7d1b64d57c2546c5323755a2bb
3
+ metadata.gz: 476f3ef3d7755fc5d1bd6679ca0bdd3b394601f0
4
+ data.tar.gz: c235ca358008c5423264d26f0b10a1e6f2523e17
5
5
  SHA512:
6
- metadata.gz: 0aab9a8bd91f1e5af0f124988b39ed4e688c6736cafacb389c7e07304b3d2067bcf32f807d0eeb3eab1c746b46404f5b4ba96effff6c969b951ee1a39f4ac017
7
- data.tar.gz: cd6e5ecf74686b422c3fc35c191362283f098c7709666715e9215d702070d5c5797f1c14f7dcc8caf1da07f36d98659875cf0544dd5e0ba3953d6d9fbe8f7ed9
6
+ metadata.gz: 95f5491457bc82b4944ef35ba10f5462beb5e63183afcfc3aed4f6b5d2fa796b857b91e39a8c7b63fa4431d892381c311be0358198fc034859368615baaca56c
7
+ data.tar.gz: ab77395229b07fc763496a45426a11d88d72d350638227eaeaf2ea773eb7955f4cafe095391cb3730556d9e5c0eb6920856ccf38ccdaef36aef2c16157e16a98
data/bin/mvp CHANGED
@@ -23,10 +23,11 @@ when 'new'
23
23
  slug = slugify(project)
24
24
 
25
25
  puts
26
+ puts "\n== Cloning Base Project =="
26
27
  run "git clone git@github.com:ian/mvp-rails.git #{slug}"
27
28
 
28
29
  puts
29
- puts "Initializing Project"
30
+ puts "\n== Initializing Project =="
30
31
  files = Dir.glob("#{slug}/**/*").select { |f| File.file?(f) }
31
32
  files.each do |file_name|
32
33
  text = File.read(file_name)
@@ -35,9 +36,10 @@ when 'new'
35
36
 
36
37
  File.open(file_name, "w") {|file| file.puts new_contents }
37
38
  end
38
- run "cd #{slug} && rm -rf .git && rm install.rb && git init"
39
+ run "cd #{slug} && rm -rf .git && git init"
40
+
41
+ run "cd #{slug}; bin/setup", "\n== Project Setup"
39
42
 
40
- run "cd #{slug}; bin/setup", "Project Setup"
41
43
  when 'update'
42
44
  puts "TBD"
43
45
  end
@@ -1,3 +1,3 @@
1
1
  module MinimumViableProduct
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimum-viable-product
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Hunter