rails_apps_composer 3.1.17 → 3.1.18

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: 192f5f51d6f9cde58caa6496eba8e4eb380b68ab
4
- data.tar.gz: a1d68007907256ce445c46fdc003536228c44313
3
+ metadata.gz: 2f2a043b1fb4b5425501737dc1000ff133ca9137
4
+ data.tar.gz: dde1ef388f5837493827a6b15d272c1a4ec5d055
5
5
  SHA512:
6
- metadata.gz: 8066e1fd3d05b5ec01046c33942796863c496a8d6432809bcbbcfdbfee25368b2b17f206c226e3251e8218305583a5ef1c4747e60c0c6d79f6c8fa75cb2ef2e1
7
- data.tar.gz: 4a77fd7be998a52edda3172f727d94e8b4340bcf6588a3981550708211de32cddc8836120336102170277019a354bfae4a4e68e8fa3b41a7a84e0bc724a2747a
6
+ metadata.gz: 4c771e034d08ffe95578b267e69fd159fbd501f5877630913ceaaf7b8a7e4e2c6393d8d76f63543975da98bf361b59b2d3283f55af6db82e615be73a250aa129
7
+ data.tar.gz: 9aa8874ac613ae95c36d5947e33c3a7f62badfd89b456d0798a08166422f6d7af3eb623857a133adff2953f65a287084b03f7466f78cc57cee1aa48a0c4cc0f3
data/recipes/analytics.rb CHANGED
@@ -3,12 +3,12 @@
3
3
 
4
4
  prefs[:analytics] = multiple_choice "Install page-view analytics?", [["None", "none"],
5
5
  ["Google Analytics", "ga"],
6
- ["Segment.io", "segmentio"]] unless prefs.has_key? :analytics
6
+ ["Segment.com", "segmentio"]] unless prefs.has_key? :analytics
7
7
  case prefs[:analytics]
8
8
  when 'ga'
9
9
  ga_id = ask_wizard('Google Analytics ID?')
10
10
  when 'segmentio'
11
- segmentio_api_key = ask_wizard('Segment.io API key?')
11
+ segmentio_api_key = ask_wizard('Segment.com Write Key?')
12
12
  end
13
13
 
14
14
  stage_two do
@@ -33,7 +33,7 @@ end
33
33
  __END__
34
34
 
35
35
  name: analytics
36
- description: "Add JavaScript files for Segment.io or Google Analytics"
36
+ description: "Add JavaScript files for Segment.com or Google Analytics"
37
37
  author: RailsApps
38
38
 
39
39
  requires: [setup, gems]
data/recipes/gems.rb CHANGED
@@ -104,7 +104,6 @@ if prefer :authentication, 'devise'
104
104
  end
105
105
 
106
106
  ## Administratative Interface
107
- add_gem 'upmin-admin' if prefer :dashboard, 'upmin'
108
107
  add_gem 'administrate' if prefer :dashboard, 'administrate'
109
108
 
110
109
  ## Authentication (OmniAuth)
data/recipes/pages.rb CHANGED
@@ -18,7 +18,6 @@ stage_two do
18
18
  generate 'pages:roles -f' if prefer :authorization, 'roles'
19
19
  generate 'pages:authorized -f' if prefer :authorization, 'pundit'
20
20
  end
21
- generate 'pages:upmin -f' if prefer :dashboard, 'upmin'
22
21
  generate 'administrate:install' if prefer :dashboard, 'administrate'
23
22
  ### GIT ###
24
23
  git :add => '-A' if prefer :git, true
data/recipes/setup.rb CHANGED
@@ -74,7 +74,7 @@ if (recipes.include? 'devise') || (recipes.include? 'omniauth')
74
74
  if prefer :authentication, 'devise'
75
75
  if (prefer :authorization, 'roles') || (prefer :authorization, 'pundit')
76
76
  prefs[:dashboard] = multiple_choice "Admin interface for database?", [["None", "none"],
77
- ["Thoughtbot Administrate", "administrate"], ["Upmin", "upmin"]] unless prefs.has_key? :dashboard
77
+ ["Thoughtbot Administrate", "administrate"]] unless prefs.has_key? :dashboard
78
78
  end
79
79
  end
80
80
  end
data/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RailsWizard
2
- VERSION = "3.1.17"
2
+ VERSION = "3.1.18"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_apps_composer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.17
4
+ version: 3.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Kehoe