bootstrappers 4.2.0.4 → 4.2.0.5
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/CHANGELOG.md +4 -0
- data/lib/bootstrappers/app_builder.rb +5 -0
- data/lib/bootstrappers/generators/app_generator.rb +1 -0
- data/lib/bootstrappers/version.rb +1 -1
- data/templates/rc/.powrc +4 -0
- data/templates/rc/.rvmrc +1 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e183a4557ac6a2c05f961bff1dfff7e6469d530a
|
4
|
+
data.tar.gz: 318933c6503be8afac8a6f6cdac669c40b47b351
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a31f5214549f8918dc8bc6cf7c38e3285a3d97a773f50eaa7a679b76e2eee9fc55f1678c6ac544c247c16b7751106856ca7566e3475da86ec7b888e05d2d3ad8
|
7
|
+
data.tar.gz: 3894a6c6ca78e4afa77f16d72e8bea5375475ffc8f85c5fd396e800df655c41784812793be111c64ce335ecd87fb81678fa4d114fa73bbecfb916dc41918b5a0
|
data/CHANGELOG.md
CHANGED
@@ -18,6 +18,11 @@ module Bootstrappers
|
|
18
18
|
:after => /gem 'jquery-rails'/
|
19
19
|
end
|
20
20
|
|
21
|
+
def add_rvmrc_and_powrc
|
22
|
+
template "rc/.rvmrc", '.rvmrc', :force => true
|
23
|
+
template "rc/.powrc", '.powrc', :force => true
|
24
|
+
end
|
25
|
+
|
21
26
|
def create_capistrano_files
|
22
27
|
template 'capistrano/deploy_rb.erb', 'config/deploy.rb',:force => true
|
23
28
|
template 'capistrano/Capfile', 'Capfile',:force => true
|
data/templates/rc/.powrc
ADDED
data/templates/rc/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm 2.0.0
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrappers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.2.0.
|
4
|
+
version: 4.2.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- xdite
|
@@ -84,6 +84,8 @@ files:
|
|
84
84
|
- templates/javascripts/README
|
85
85
|
- templates/javascripts/application.js
|
86
86
|
- templates/mysql_database.yml.erb
|
87
|
+
- templates/rc/.powrc
|
88
|
+
- templates/rc/.rvmrc
|
87
89
|
- templates/setting.rb
|
88
90
|
- templates/stylesheets/application.css.scss
|
89
91
|
- templates/stylesheets/bootstrap-override.css.scss
|