rails_baseline 0.1.8 → 0.1.9
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/lib/rails_baseline/template.rb +6 -2
- data/lib/rails_baseline/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: 6873b896a27ee7dfc6ac3e7fc7733a45111277cf
|
4
|
+
data.tar.gz: 7df87df30949aa5de5e255fd8483f1898340af36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c383327500f9e2e03a59f7924feab65c94f149d69dbcd532e79db2e86129f13df993a0e36301536accb01518d68c5a47d10e27ca48f2484442dbb5284d560ddb
|
7
|
+
data.tar.gz: 545749ff5b2d67c69410766bb9e9e97347418822f9de77f2233f1335a4b9dd40a84d10911151a572f5fd5f6ad694b9456bb756d2b9d3e1cdd807830d3964fa9b
|
@@ -385,7 +385,11 @@ end
|
|
385
385
|
@before_configs["paranoia"].call if @before_configs["paranoia"]
|
386
386
|
say_recipe 'Paranoia'
|
387
387
|
|
388
|
-
|
388
|
+
if config['database'] != "mongoid"
|
389
|
+
gem "paranoia", "~> 2.0"
|
390
|
+
else
|
391
|
+
gem 'mongoid_paranoia', '~> 0.1.2'
|
392
|
+
end
|
389
393
|
|
390
394
|
# >------------------------[ Better Errors and Hirb ]-----------------------------<
|
391
395
|
|
@@ -617,7 +621,7 @@ end
|
|
617
621
|
@before_configs["deployment"].call if @before_configs["deployment"]
|
618
622
|
say_recipe 'Deployment'
|
619
623
|
|
620
|
-
config['deployment'] = multiple_choice("Which deployment method are you using?", [["Heroku", "heroku"], ["Capistrano", "capistrano"], ["Engine Yard", "engineyard"]])
|
624
|
+
config['deployment'] = multiple_choice("Which deployment method are you using?", [["Heroku", "heroku"], ["Capistrano", "capistrano"], ["Engine Yard", "engineyard"], ["No Recipe", "none"]])
|
621
625
|
|
622
626
|
unicorn_config =<<-TEXT
|
623
627
|
# config/unicorn.rb
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_baseline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yoon Wai Yan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Create baseline rails app with ease. Based on the normal practices by
|
14
14
|
Cloud Coder team.
|