project_templater 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -54,5 +54,13 @@ Define a `run` method that will be called. There are two methods available:
54
54
 
55
55
  You can also define a `post_install` method that is run after the `run` method has. You also have access to the `@base` variable, which is the directory the generator was run in.
56
56
 
57
+ ## Changelog
58
+
59
+ __0.1.1__
60
+ - updated `ruby_basic` generator so it creates a couple more folders
61
+
62
+ __0.1.0__
63
+ - initial release
64
+
57
65
 
58
66
 
@@ -9,10 +9,13 @@ class RubyProject < Generator
9
9
  "--color"
10
10
  }
11
11
  make_file(".gitignore")
12
+ make_dir("lib")
12
13
  make_dir("spec")
14
+ make_dir("spec/unit")
15
+ make_dir("spec/integration")
13
16
  end
14
17
 
15
18
  def post_install
16
- `cd #{@base} && git init && bundle`
19
+ puts `cd #{@base} && git init && bundle`
17
20
  end
18
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: project_templater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: