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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ac1cd922551cf648cef727f376c2b259a4ccbe7c
4
- data.tar.gz: cdd1dee723b429f3749d03d6c945f38185d23a35
3
+ metadata.gz: 6873b896a27ee7dfc6ac3e7fc7733a45111277cf
4
+ data.tar.gz: 7df87df30949aa5de5e255fd8483f1898340af36
5
5
  SHA512:
6
- metadata.gz: 1176ef3c4658388d853ee663203f32b146049feee04539926d4383869defb4dfbe01044b899796df51aecf3e5610a295aa036914887081e16df6c41be47efb5d
7
- data.tar.gz: 3274e10e4cb8facf5d57307d67ddd23341e344ec1cd3a23d76a7754ffadd99ec4f4d7000223b17e6d8543656222865ac7a8e17e0760772d25f7b3d686c58fe43
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
- gem "paranoia", "~> 2.0"
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
@@ -1,3 +1,3 @@
1
1
  module RailsBaseline
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
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.8
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-03 00:00:00.000000000 Z
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.