wagon_rails 0.4.1 → 0.4.2
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 +2 -2
- data/lib/wagon_rails/app_builder.rb +1 -1
- data/lib/wagon_rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79a82e8732a132ac457a72addaac9f2f6160febc
|
|
4
|
+
data.tar.gz: 6223d1b0301835348e6469e9e660b8267b995e3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b517eedb1268cceb24ca8737161a14ae4be63e6066bbc5fb85e7b5e469483e1121a2b112dbc74bf1a90deeaad3d8b66299058cd0f0692b68806fbd1630efeece
|
|
7
|
+
data.tar.gz: 38a359ec740ee28efcfe1c75cfc061eb3226a97890bb9d7ac6044f2ecf0100f5568840b88cbcf4a93dd0ff3393e9942808d1384ce6bc03e125852026acf2a02d
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/wagon_rails)
|
|
4
4
|
|
|
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
|
|
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 with just one command line.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -28,7 +28,7 @@ If you don't want to create a GitHub repo, use the `--skip-github` flag, and
|
|
|
28
28
|
if you don't want to create an Heroku app, use the `--skip-heroku` flag.
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
$ wagon_rails
|
|
31
|
+
$ wagon_rails new YOUR_PROJECT_NAME --skip-github --skip-heroku
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
## Dependencies
|
|
@@ -206,7 +206,7 @@ module WagonRails
|
|
|
206
206
|
def add_host_to_application_yml
|
|
207
207
|
host = <<-EOF
|
|
208
208
|
production:
|
|
209
|
-
HOST: https
|
|
209
|
+
HOST: https://#{heroku_app_name}.herokuapp.com
|
|
210
210
|
EOF
|
|
211
211
|
|
|
212
212
|
append_file "config/application.yml", host
|
data/lib/wagon_rails/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wagon_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ssaunier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|