jumpstart 0.1.9 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,77 @@
1
+ ---
2
+ # The commands in a jumpstart config file are executed in the order displayed in this file.
3
+
4
+ # The path to where the project directory will be created
5
+ # e.g. :install_path: /Users/i0n/Sites
6
+ :install_path:
7
+
8
+ ## Can be omitted or left blank.
9
+ # The command that this template will run. The main shell command to create the project.
10
+ # e.g. :install_command: rails
11
+ :install_command:
12
+
13
+ ## Can be omitted or left blank.
14
+ # The arguments for :install_command. Broken into it's own value to allow the project name to be inserted between the two values.
15
+ # e.g. :install_command_args: -d mysql -J -T
16
+ :install_command_args:
17
+
18
+ ## Can be omitted or left blank.
19
+ # Add extra commands that you want to run after the main install command, but before template generation has started.
20
+ # e.g.
21
+ # :run_after_install_command:
22
+ # - rails g controller home
23
+ # - rails g model home
24
+ :run_after_install_command:
25
+
26
+ ## Can be omitted or left blank.
27
+ # List files that you would like removed from the newly generated project.
28
+ # Paths use the newly created project folder as root.
29
+ # e.g.
30
+ # :remove_files:
31
+ # - /public/index.html
32
+ # - /public/favicon.ico
33
+ # - /public/images/rails.png
34
+ :remove_files:
35
+
36
+ ## Can be omitted or left blank.
37
+ # Add extra commands that you want to run after template generation has completed.
38
+ # e.g.
39
+ # :run_after_jumpstart:
40
+ # - rake db:create
41
+ # - capify!
42
+ # - git init
43
+ # - git add .
44
+ # - git commit -q -v -a -m "Initial commit"
45
+ :run_after_jumpstart:
46
+
47
+ ## Can be omitted or left blank.
48
+ # List files that you would like to perform string substitution on. This can be useful for populating files such as a capistrano deploy.rb file.
49
+ # Paths use the newly created project folder as root.
50
+ # Any key:value pair can be used for substitution, simply add the key name in CAPS to the template file then specify the symbol key and value as in the example.
51
+ # Note! The value of :project_name is hard coded to be the same as the projects name, no matter the value entered in this config file. This helps with capistrano.
52
+ # e.g.
53
+ # :replace_strings:
54
+ # - :target_path: /config/deploy.rb
55
+ # :symbols:
56
+ # :project_name: name_of_my_app
57
+ # :remote_server: thoughtplant
58
+ # - :target_path: /another/config/file.rb
59
+ # :symbols:
60
+ # :project_name: name_of_my_app
61
+ # :womble: uncle_bulgaria
62
+ :replace_strings:
63
+ - :target_path:
64
+ :symbols:
65
+
66
+ ## Can be omitted or left blank.
67
+ # If you would like jumpstart to configure your local nginx setup specify a path. Handy for rails.
68
+ # e.g.
69
+ # :local_nginx_conf: /usr/local/nginx/conf/nginx.conf
70
+ :local_nginx_conf:
71
+
72
+ ## Can be omitted or left blank.
73
+ # If you would like jumpstart to configure your remote nginx setup specify a path.
74
+ # EXPERIMENTAL FEATURE NOT YET IMPLEMENTED
75
+ # e.g.
76
+ # :remote_nginx_conf: /opt/nginx/conf/nginx.conf
77
+ :remote_nginx_conf:
@@ -1,3 +1,3 @@
1
1
  module JumpStart
2
- VERSION = "0.1.9"
2
+ VERSION = "0.1.10"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 9
9
- version: 0.1.9
8
+ - 10
9
+ version: 0.1.10
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ian Alexander Wood (i0n)
@@ -57,6 +57,7 @@ extra_rdoc_files: []
57
57
  files:
58
58
  - bin/jumpstart
59
59
  - config/jumpstart_setup.yml
60
+ - jumpstart_templates/empty_template/empty_template.yml
60
61
  - lib/jumpstart/base.rb
61
62
  - lib/jumpstart/filetools.rb
62
63
  - lib/jumpstart/stringtools.rb