wagon_rails 0.3.0 → 0.4.0
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/README.md +3 -0
- data/lib/wagon_rails/app_builder.rb +2 -0
- data/lib/wagon_rails/generators/app_generator.rb +2 -1
- data/lib/wagon_rails/version.rb +1 -1
- data/templates/application.yml +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8be18dd408eece1c59bfee8be1f610fb5d67f3d2
|
4
|
+
data.tar.gz: 3e2e9a0ccc8b32d15dd6764ca1eecb8906bb35b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8a8ce2ed54b032a5fd03d1f70c1bb8a4e55ee7a405f2820d21257735f9106b4c1a1c83bc3bf7c6e2a8df538cdf8cf4ecba7206ce3ba78dcdacff463b982f35f
|
7
|
+
data.tar.gz: 456374bd9ea4f8619e171e091e13a2777cc516258187e4fffc04d9409a864aaa9a6c566e3ba074d68999743d1b1c349acb7d37d6eab9e00a9514da1ae133562d
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Wagon Rails
|
2
2
|
|
3
|
+
[](http://badge.fury.io/rb/wagon_rails)
|
4
|
+
|
3
5
|
Wagon Rails is the base Rails application used by [Le Wagon](http://www.lewagon.org/en)'s students during the 9-week FullStack bootcamp. It's the scripted version of [lewagon/rails-kickoff](http://github.com/lewagon/rails-kickoff) where you would manually copy/paste commands to achieve the same result as justone.
|
4
6
|
|
5
7
|
## Installation
|
@@ -13,6 +15,7 @@ $ gem install wagon_rails
|
|
13
15
|
Then run:
|
14
16
|
|
15
17
|
```bash
|
18
|
+
$ cd ~/code/YOUR_GITHUB_NICKNAME
|
16
19
|
$ wagon_rails new YOUR_PROJECT_NAME
|
17
20
|
```
|
18
21
|
|
@@ -43,9 +43,9 @@ module WagonRails
|
|
43
43
|
invoke :setup_auth
|
44
44
|
invoke :setup_database
|
45
45
|
invoke :create_github_repo
|
46
|
+
invoke :create_heroku_app
|
46
47
|
invoke :first_commit
|
47
48
|
invoke :first_push
|
48
|
-
invoke :create_heroku_app
|
49
49
|
invoke :outro
|
50
50
|
end
|
51
51
|
|
@@ -136,6 +136,7 @@ module WagonRails
|
|
136
136
|
build :set_heroku_remote
|
137
137
|
build :provide_deploy_script
|
138
138
|
build :add_host_to_application_yml
|
139
|
+
build :push_env_to_heroku
|
139
140
|
build :commit, "Add heroku deploy script"
|
140
141
|
end
|
141
142
|
end
|
data/lib/wagon_rails/version.rb
CHANGED
data/templates/application.yml
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# This file is not versioned by git, so not shared on GitHub
|
2
2
|
# If you add something here, inform your colleagues over a **secure** channel.
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
# Uncomment these 3 lines to use Paperclip and AWS to store file uploads
|
5
|
+
# S3_BUCKET_NAME: "TODO"
|
6
|
+
# AWS_ACCESS_KEY_ID: "TODO"
|
7
|
+
# AWS_SECRET_ACCESS_KEY: "TODO"
|