mvpkit 1.1.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -24
  3. data/README.md +43 -48
  4. data/VERSION +1 -1
  5. data/bin/mvp +2 -2
  6. data/config/routes.rb +0 -4
  7. data/mvpkit.gemspec +57 -129
  8. data/package.json +3 -22
  9. data/project/.babelrc +23 -1
  10. data/project/.gitignore +2 -0
  11. data/project/.postcssrc.yml +4 -0
  12. data/project/Gemfile +21 -13
  13. data/project/Gemfile.lock +181 -153
  14. data/project/Procfile +1 -1
  15. data/project/README.md +2 -116
  16. data/project/app/assets/javascripts/application.js +0 -8
  17. data/project/app/assets/stylesheets/application.scss +9 -3
  18. data/project/app/assets/stylesheets/elements/alerts.scss +10 -0
  19. data/project/app/assets/stylesheets/elements/badges.scss +16 -0
  20. data/project/app/assets/stylesheets/elements/buttons.scss +107 -0
  21. data/project/app/assets/stylesheets/elements/cards.scss +68 -0
  22. data/project/app/assets/stylesheets/elements/drawer.scss +66 -0
  23. data/project/app/assets/stylesheets/elements/forms.scss +64 -0
  24. data/project/app/assets/stylesheets/elements/interstitial.scss +24 -0
  25. data/project/app/assets/stylesheets/elements/navs.scss +15 -0
  26. data/project/app/assets/stylesheets/elements/sidebar.scss +30 -0
  27. data/project/app/assets/stylesheets/elements/tables.scss +61 -0
  28. data/project/app/assets/stylesheets/elements/timeline.scss +38 -0
  29. data/project/app/assets/stylesheets/elements/typography.scss +80 -0
  30. data/project/app/assets/stylesheets/init/bootstrap.scss +53 -0
  31. data/project/app/assets/stylesheets/init/reset.scss +20 -0
  32. data/project/app/assets/stylesheets/init/variables.scss +40 -0
  33. data/project/app/assets/stylesheets/treatments/backgrounds.scss +23 -0
  34. data/project/app/assets/stylesheets/treatments/borders.scss +7 -0
  35. data/project/app/{webpack/stylesheets/skin → assets/stylesheets/treatments}/spacing.scss +4 -10
  36. data/{app/controllers/mvp → project/app/controllers}/analytics_controller.rb +0 -0
  37. data/{app/controllers/concerns/mvp → project/app/controllers/concerns}/analytics_concern.rb +0 -0
  38. data/{app/controllers/concerns/mvp → project/app/controllers/concerns}/seo_concern.rb +0 -0
  39. data/{app/controllers/concerns/mvp → project/app/controllers/concerns}/session_concern.rb +0 -0
  40. data/project/app/controllers/conversions_controller.rb +1 -2
  41. data/{app/controllers/mvp → project/app/controllers}/seo_controller.rb +0 -0
  42. data/project/app/engines/admin/app/views/layouts/admin/_header.html.erb +18 -18
  43. data/project/app/helpers/application_helper.rb +0 -14
  44. data/{app/assets/stylesheets/mvp/application.scss → project/app/javascript/components/.gitkeep} +0 -0
  45. data/project/app/javascript/components/conversion.jsx +73 -0
  46. data/project/app/javascript/packs/application.js +28 -0
  47. data/project/app/javascript/packs/server_rendering.js +5 -0
  48. data/project/app/models/conversion.rb +1 -1
  49. data/project/app/views/conversions/show.json.jbuilder +1 -0
  50. data/project/app/views/home/index.html.erb +22 -22
  51. data/project/app/views/layouts/_header.html.erb +35 -34
  52. data/{app/views/layouts/mvp → project/app/views/layouts}/_instrumentation.html.erb +0 -0
  53. data/{app/views/layouts/mvp → project/app/views/layouts}/_meta.html.erb +0 -0
  54. data/project/app/views/layouts/application.html.erb +31 -21
  55. data/project/bin/setup +1 -1
  56. data/project/bin/webpack +28 -0
  57. data/project/bin/webpack-dev-server +43 -0
  58. data/project/config/initializers/assets.rb +2 -0
  59. data/{config → project/config}/initializers/canonical_host.rb +0 -0
  60. data/{config → project/config}/initializers/cloudinary.rb +0 -0
  61. data/{config → project/config}/initializers/rollbar.rb +0 -0
  62. data/{config → project/config}/initializers/routing.rb +0 -0
  63. data/{config → project/config}/initializers/spoof_ip.rb +0 -0
  64. data/{config → project/config}/initializers/ssl.rb +0 -0
  65. data/project/config/routes.rb +5 -7
  66. data/project/config/webpack/configuration.js +35 -0
  67. data/project/config/webpack/development.js +32 -0
  68. data/project/config/webpack/loaders/assets.js +12 -0
  69. data/project/config/webpack/loaders/babel.js +5 -0
  70. data/project/config/webpack/loaders/coffee.js +4 -0
  71. data/project/config/webpack/loaders/erb.js +9 -0
  72. data/project/config/webpack/loaders/react.js +5 -0
  73. data/project/config/webpack/loaders/sass.js +15 -0
  74. data/project/config/webpack/production.js +35 -0
  75. data/project/config/webpack/shared.js +58 -0
  76. data/project/config/webpack/test.js +6 -0
  77. data/project/config/webpacker.yml +38 -0
  78. data/project/package-lock.json +250 -0
  79. data/project/package.json +37 -17
  80. data/project/yarn.lock +4538 -0
  81. metadata +56 -326
  82. data/app/assets/javascripts/mvp/application.js +0 -1
  83. data/app/controllers/mvp/styleguide_controller.rb +0 -23
  84. data/app/helpers/minimum_viable_product/body_helper.rb +0 -14
  85. data/app/helpers/minimum_viable_product/bootstrap_helper.rb +0 -38
  86. data/app/helpers/minimum_viable_product/styleguide_helper.rb +0 -4
  87. data/app/models/concerns/mvp/slugification.rb +0 -24
  88. data/app/views/layouts/mvp/application.html.erb +0 -19
  89. data/app/views/mvp/styleguide/_example.html.erb +0 -6
  90. data/app/views/mvp/styleguide/bootstrap.html.erb +0 -43
  91. data/app/views/mvp/styleguide/bootstrap/_buttons.html.erb +0 -191
  92. data/app/views/mvp/styleguide/bootstrap/_forms.html.erb +0 -192
  93. data/app/views/mvp/styleguide/bootstrap/_header.html.erb +0 -48
  94. data/app/views/mvp/styleguide/bootstrap/_panels.html.erb +0 -16
  95. data/app/views/mvp/styleguide/bootstrap/_tables.html.erb +0 -34
  96. data/app/views/mvp/styleguide/bootstrap/_typography.html.erb +0 -51
  97. data/app/views/mvp/styleguide/elements/_grouping.html.erb +0 -1
  98. data/app/views/mvp/styleguide/elements/partials/_row_groups_of.html.erb +0 -7
  99. data/app/views/mvp/styleguide/index.html.erb +0 -17
  100. data/app/views/mvp/styleguide/layouts/basic.html.erb +0 -4
  101. data/app/views/mvp/styleguide/layouts/carousel.html.erb +0 -120
  102. data/app/views/mvp/styleguide/layouts/cover.html.erb +0 -34
  103. data/config/initializers/assets.rb +0 -2
  104. data/config/initializers/geocoder.rb +0 -9
  105. data/project/app/assets/javascripts/pack-compiled.js +0 -37394
  106. data/project/app/assets/javascripts/pack-compiled.js.map +0 -1
  107. data/project/app/assets/javascripts/templates.js.erb +0 -14
  108. data/project/app/assets/stylesheets/pack-compiled.css +0 -33946
  109. data/project/app/assets/stylesheets/pack-compiled.css.map +0 -1
  110. data/project/app/controllers/examples_controller.rb +0 -2
  111. data/project/app/views/examples/index.html.erb +0 -1
  112. data/project/app/views/examples/mustache.html.erb +0 -40
  113. data/project/app/views/examples/mustache/template.mustache +0 -1
  114. data/project/app/views/home/conversion.html.erb +0 -12
  115. data/project/app/webpack/javascripts/behaviors/example.js +0 -21
  116. data/project/app/webpack/javascripts/controllers/home.js +0 -15
  117. data/project/app/webpack/javascripts/lib/analytics.js +0 -22
  118. data/project/app/webpack/javascripts/lib/clientsidevalidations.js +0 -3
  119. data/project/app/webpack/javascripts/lib/controllers.js +0 -28
  120. data/project/app/webpack/javascripts/lib/forms.js +0 -28
  121. data/project/app/webpack/javascripts/lib/selectize.js +0 -1
  122. data/project/app/webpack/javascripts/pack.js +0 -50
  123. data/project/app/webpack/stylesheets/config/variables.scss +0 -41
  124. data/project/app/webpack/stylesheets/init/reset.scss +0 -48
  125. data/project/app/webpack/stylesheets/layout/main.scss +0 -7
  126. data/project/app/webpack/stylesheets/pack.scss +0 -20
  127. data/project/app/webpack/stylesheets/skin/alerts.scss +0 -3
  128. data/project/app/webpack/stylesheets/skin/buttons.scss +0 -38
  129. data/project/app/webpack/stylesheets/skin/hero.scss +0 -45
  130. data/project/app/webpack/stylesheets/skin/images.scss +0 -13
  131. data/project/app/webpack/stylesheets/skin/progress.scss +0 -3
  132. data/project/app/webpack/stylesheets/skin/selectize.scss +0 -30
  133. data/project/app/webpack/stylesheets/skin/tables.scss +0 -24
  134. data/project/app/webpack/stylesheets/skin/treatments.scss +0 -3
  135. data/project/app/webpack/stylesheets/skin/turbolinks.scss +0 -4
  136. data/project/app/webpack/stylesheets/skin/typography.scss +0 -116
  137. data/project/webpack.config.js +0 -76
data/package.json CHANGED
@@ -12,33 +12,14 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "git+https://github.com/superlabs/mvpkit.git"
15
+ "url": "git+https://github.com/ian/mvpkit.git"
16
16
  },
17
17
  "author": "",
18
18
  "license": "ISC",
19
19
  "bugs": {
20
- "url": "https://github.com/superlabs/mvpkit/issues"
20
+ "url": "https://github.com/ian/mvpkit/issues"
21
21
  },
22
- "homepage": "https://github.com/superlabs/mvpkit#readme",
22
+ "homepage": "https://github.com/ian/mvpkit#readme",
23
23
  "dependencies": {
24
- "coffee-loader": "^0.7.2",
25
- "coffee-script": "^1.10.0",
26
- "css-loader": "^0.24.0",
27
- "es6-loader": "^0.2.0",
28
- "extract-text-webpack-plugin": "^1.0.1",
29
- "file-loader": "^0.9.0",
30
- "font-awesome": "^4.6.3",
31
- "is": "^3.1.0",
32
- "jquery": "^3.1.0",
33
- "jquery-ujs": "^1.2.2",
34
- "jquery.cookie": "^1.4.1",
35
- "lodash": "^4.14.1",
36
- "mustache": "^2.3.0",
37
- "node-sass": "^3.8.0",
38
- "resolve-url": "^0.2.1",
39
- "resolve-url-loader": "^1.6.0",
40
- "sass-loader": "^4.0.1",
41
- "style-loader": "^0.13.1",
42
- "webpack": "^1.13.2"
43
24
  }
44
25
  }
data/project/.babelrc CHANGED
@@ -1,3 +1,25 @@
1
1
  {
2
- "presets": ["es2015"]
2
+ "presets": [
3
+ [
4
+ "env",
5
+ {
6
+ "modules": false,
7
+ "targets": {
8
+ "browsers": "> 1%",
9
+ "uglify": true
10
+ },
11
+ "useBuiltIns": true
12
+ }
13
+ ],
14
+ "react"
15
+ ],
16
+ "plugins": [
17
+ "syntax-dynamic-import",
18
+ [
19
+ "transform-class-properties",
20
+ {
21
+ "spec": true
22
+ }
23
+ ]
24
+ ]
3
25
  }
data/project/.gitignore CHANGED
@@ -47,3 +47,5 @@ bower.json
47
47
  # NPM stuff
48
48
  npm-debug.log
49
49
  node_modules
50
+ /public/packs
51
+ /node_modules
@@ -0,0 +1,4 @@
1
+ plugins:
2
+ postcss-smart-import: {}
3
+ precss: {}
4
+ autoprefixer: {}
data/project/Gemfile CHANGED
@@ -8,12 +8,18 @@ git_source(:github) do |repo_name|
8
8
  end
9
9
 
10
10
  gem "algoliasearch-rails"
11
- gem 'carrierwave', '0.11.2' # don't upgrade it'll break carrierwave-neo4j
11
+ gem 'carrierwave'
12
12
  gem 'client_side_validations'
13
13
  gem 'client_side_validations-simple_form'
14
+ gem "cloudinary"
14
15
  gem 'devise'
15
16
  # gem 'devise_invitable' # uncomment if you want to make it so users are invitable
16
17
  gem "dotenv-rails"
18
+ gem 'faraday'
19
+ gem 'fog'
20
+ gem 'fog-aws'
21
+ gem "geocoder"
22
+ gem "hashie"
17
23
  gem 'identicon'
18
24
  gem 'jbuilder', '~> 2.5'
19
25
  gem 'mustache'
@@ -21,27 +27,30 @@ gem 'mvpkit', '~> 1.1.1'#, path: '../../mvpkit'
21
27
  gem 'pg'
22
28
  gem 'postmark-rails'
23
29
  gem 'puma', '~> 3.0'
30
+ gem "rack-canonical-host"
31
+ gem 'rack-ssl-enforcer'
24
32
  gem 'rails', '~> 5.0.1'
25
33
  gem 'ransack'
26
34
  gem 'redis'
27
35
  gem 'redis-namespace'
36
+ gem 'rollbar'
28
37
  gem 'sidekiq'
29
38
  gem 'simple_form'
30
- gem 'stripe-rails', github: 'thefrontside/stripe-rails'
39
+ gem 'sitemap_generator'
40
+ gem 'slack-notifier'
41
+ gem 'stripe-rails'
31
42
  gem 'workflow'
32
43
 
33
44
  # engines
34
45
  gem 'admin', path: './app/engines/admin'
35
46
 
36
47
  # assets
37
- gem 'font-awesome-sass'
38
- gem 'jquery-turbolinks'
39
- gem 'sprockets', github: 'rails/sprockets' # edge includes format_source_map bug fix
40
- # # See https://github.com/rails/execjs#readme for more supported runtimes
41
- # gem 'mini_racer'
42
- # # gem 'therubyracer', platforms: :ruby
48
+ gem 'react-rails'
49
+ gem 'sass-rails'
50
+ gem 'sprockets'#, github: 'rails/sprockets' # edge includes format_source_map bug fix
43
51
  gem 'turbolinks', '~> 5'
44
52
  gem 'uglifier'
53
+ gem 'webpacker'
45
54
 
46
55
  group :development, :test do
47
56
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
@@ -50,12 +59,11 @@ group :development, :test do
50
59
  end
51
60
 
52
61
  group :development do
53
- gem 'better_errors'
54
- gem 'binding_of_caller'
55
- # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
56
- gem 'web-console', '>= 3.3.0'
62
+ gem "better_errors"
63
+ gem "binding_of_caller"
64
+ gem "bullet"
57
65
  gem 'listen', '~> 3.0.5'
58
- # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
59
66
  gem 'spring'
60
67
  gem 'spring-watcher-listen', '~> 2.0.0'
68
+ gem 'web-console'
61
69
  end
data/project/Gemfile.lock CHANGED
@@ -1,20 +1,3 @@
1
- GIT
2
- remote: https://github.com/rails/sprockets.git
3
- revision: 2b5956d754cdda186435b1ea0c2ff453572b4eea
4
- specs:
5
- sprockets (4.0.0.beta4)
6
- concurrent-ruby (~> 1.0)
7
- rack (> 1, < 3)
8
-
9
- GIT
10
- remote: https://github.com/thefrontside/stripe-rails.git
11
- revision: a11cf2fe8094044039fd278543d195a67f269c65
12
- specs:
13
- stripe-rails (0.3.2)
14
- rails (>= 3)
15
- responders (~> 2.0)
16
- stripe (< 2)
17
-
18
1
  PATH
19
2
  remote: app/engines/admin
20
3
  specs:
@@ -25,116 +8,124 @@ GEM
25
8
  remote: https://rubygems.org/
26
9
  specs:
27
10
  CFPropertyList (2.3.5)
28
- actioncable (5.0.2)
29
- actionpack (= 5.0.2)
11
+ actioncable (5.0.6)
12
+ actionpack (= 5.0.6)
30
13
  nio4r (>= 1.2, < 3.0)
31
14
  websocket-driver (~> 0.6.1)
32
- actionmailer (5.0.2)
33
- actionpack (= 5.0.2)
34
- actionview (= 5.0.2)
35
- activejob (= 5.0.2)
15
+ actionmailer (5.0.6)
16
+ actionpack (= 5.0.6)
17
+ actionview (= 5.0.6)
18
+ activejob (= 5.0.6)
36
19
  mail (~> 2.5, >= 2.5.4)
37
20
  rails-dom-testing (~> 2.0)
38
- actionpack (5.0.2)
39
- actionview (= 5.0.2)
40
- activesupport (= 5.0.2)
21
+ actionpack (5.0.6)
22
+ actionview (= 5.0.6)
23
+ activesupport (= 5.0.6)
41
24
  rack (~> 2.0)
42
25
  rack-test (~> 0.6.3)
43
26
  rails-dom-testing (~> 2.0)
44
27
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
45
- actionview (5.0.2)
46
- activesupport (= 5.0.2)
28
+ actionview (5.0.6)
29
+ activesupport (= 5.0.6)
47
30
  builder (~> 3.1)
48
31
  erubis (~> 2.7.0)
49
32
  rails-dom-testing (~> 2.0)
50
33
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
51
- activejob (5.0.2)
52
- activesupport (= 5.0.2)
34
+ activejob (5.0.6)
35
+ activesupport (= 5.0.6)
53
36
  globalid (>= 0.3.6)
54
- activemodel (5.0.2)
55
- activesupport (= 5.0.2)
56
- activerecord (5.0.2)
57
- activemodel (= 5.0.2)
58
- activesupport (= 5.0.2)
37
+ activemodel (5.0.6)
38
+ activesupport (= 5.0.6)
39
+ activerecord (5.0.6)
40
+ activemodel (= 5.0.6)
41
+ activesupport (= 5.0.6)
59
42
  arel (~> 7.0)
60
- activesupport (5.0.2)
43
+ activesupport (5.0.6)
61
44
  concurrent-ruby (~> 1.0, >= 1.0.2)
62
45
  i18n (~> 0.7)
63
46
  minitest (~> 5.1)
64
47
  tzinfo (~> 1.1)
65
- addressable (2.5.1)
66
- public_suffix (~> 2.0, >= 2.0.2)
67
- algoliasearch (1.12.7)
48
+ addressable (2.5.2)
49
+ public_suffix (>= 2.0.2, < 4.0)
50
+ algoliasearch (1.14.0)
68
51
  httpclient (~> 2.8.3)
69
52
  json (>= 1.5.1)
70
- algoliasearch-rails (1.19.1)
71
- algoliasearch (~> 1.12.4)
53
+ algoliasearch-rails (1.20.1)
54
+ algoliasearch (~> 1.14.0)
72
55
  json (>= 1.5.1)
73
56
  arel (7.1.4)
74
57
  aws_cf_signer (0.1.3)
58
+ babel-source (5.8.35)
59
+ babel-transpiler (0.7.0)
60
+ babel-source (>= 4.0, < 6)
61
+ execjs (~> 2.0)
75
62
  bcrypt (3.1.11)
76
- better_errors (2.1.1)
63
+ better_errors (2.3.0)
77
64
  coderay (>= 1.0.0)
78
- erubis (>= 2.6.6)
65
+ erubi (>= 1.0.0)
79
66
  rack (>= 0.9.0)
80
67
  bindex (0.5.0)
81
68
  binding_of_caller (0.7.2)
82
69
  debug_inspector (>= 0.0.1)
83
70
  builder (3.2.3)
84
- byebug (9.0.6)
85
- carrierwave (0.11.2)
86
- activemodel (>= 3.2.0)
87
- activesupport (>= 3.2.0)
88
- json (>= 1.7)
71
+ bullet (5.6.1)
72
+ activesupport (>= 3.0.0)
73
+ uniform_notifier (~> 1.10.0)
74
+ byebug (9.1.0)
75
+ carrierwave (1.1.0)
76
+ activemodel (>= 4.0.0)
77
+ activesupport (>= 4.0.0)
89
78
  mime-types (>= 1.16)
90
- mimemagic (>= 0.3.0)
91
79
  chunky_png (1.3.8)
92
- client_side_validations (9.2.0)
80
+ client_side_validations (9.3.4)
93
81
  jquery-rails (~> 4.3)
94
82
  js_regex (~> 1.2)
95
83
  rails (>= 5.0.0.1, < 5.2)
96
- client_side_validations-simple_form (6.1.0)
97
- client_side_validations (~> 9.0)
98
- simple_form (~> 3.4)
99
- cloudinary (1.7.0)
84
+ client_side_validations-simple_form (6.3.0)
85
+ client_side_validations (~> 9.3, >= 9.3.2)
86
+ simple_form (~> 3.5)
87
+ cloudinary (1.8.1)
100
88
  aws_cf_signer
101
89
  rest-client
102
- coderay (1.1.1)
90
+ coderay (1.1.2)
103
91
  concurrent-ruby (1.0.5)
104
92
  connection_pool (2.2.1)
105
- debug_inspector (0.0.2)
106
- devise (4.2.1)
93
+ debug_inspector (0.0.3)
94
+ devise (4.3.0)
107
95
  bcrypt (~> 3.0)
108
96
  orm_adapter (~> 0.1)
109
- railties (>= 4.1.0, < 5.1)
97
+ railties (>= 4.1.0, < 5.2)
110
98
  responders
111
99
  warden (~> 1.2.3)
112
100
  domain_name (0.5.20170404)
113
101
  unf (>= 0.0.5, < 1.0.0)
114
- dotenv (2.2.0)
115
- dotenv-rails (2.2.0)
116
- dotenv (= 2.2.0)
117
- railties (>= 3.2, < 5.1)
102
+ dotenv (2.2.1)
103
+ dotenv-rails (2.2.1)
104
+ dotenv (= 2.2.1)
105
+ railties (>= 3.2, < 5.2)
106
+ erubi (1.6.1)
118
107
  erubis (2.7.0)
119
- excon (0.55.0)
108
+ excon (0.59.0)
120
109
  execjs (2.7.0)
121
- faraday (0.12.1)
110
+ faraday (0.13.1)
122
111
  multipart-post (>= 1.2, < 3)
123
112
  ffi (1.9.18)
124
113
  fission (0.5.0)
125
114
  CFPropertyList (~> 2.2)
126
- fog (1.40.0)
115
+ fog (1.41.0)
127
116
  fog-aliyun (>= 0.1.0)
128
117
  fog-atmos
129
118
  fog-aws (>= 0.6.0)
130
119
  fog-brightbox (~> 0.4)
131
120
  fog-cloudatcost (~> 0.1.0)
132
- fog-core (~> 1.43)
121
+ fog-core (~> 1.45)
133
122
  fog-digitalocean (>= 0.3.0)
134
123
  fog-dnsimple (~> 1.0)
135
124
  fog-dynect (~> 0.0.2)
136
125
  fog-ecloud (~> 0.1)
137
126
  fog-google (<= 0.1.0)
127
+ fog-internet-archive
128
+ fog-joyent
138
129
  fog-json
139
130
  fog-local
140
131
  fog-openstack
@@ -155,7 +146,7 @@ GEM
155
146
  fog-xml (~> 0.1.1)
156
147
  ipaddress (~> 0.5)
157
148
  json (>= 1.8, < 2.0)
158
- fog-aliyun (0.1.0)
149
+ fog-aliyun (0.2.0)
159
150
  fog-core (~> 1.27)
160
151
  fog-json (~> 1.0)
161
152
  ipaddress (~> 0.8)
@@ -163,12 +154,12 @@ GEM
163
154
  fog-atmos (0.1.0)
164
155
  fog-core
165
156
  fog-xml
166
- fog-aws (1.3.0)
157
+ fog-aws (1.4.1)
167
158
  fog-core (~> 1.38)
168
159
  fog-json (~> 1.0)
169
160
  fog-xml (~> 0.1)
170
161
  ipaddress (~> 0.8)
171
- fog-brightbox (0.11.0)
162
+ fog-brightbox (0.13.0)
172
163
  fog-core (~> 1.22)
173
164
  fog-json
174
165
  inflecto (~> 0.0.2)
@@ -177,9 +168,9 @@ GEM
177
168
  fog-json (~> 1.0)
178
169
  fog-xml (~> 0.1)
179
170
  ipaddress (~> 0.8)
180
- fog-core (1.43.0)
171
+ fog-core (1.45.0)
181
172
  builder
182
- excon (~> 0.49)
173
+ excon (~> 0.58)
183
174
  formatador (~> 0.2)
184
175
  fog-digitalocean (0.3.0)
185
176
  fog-core (~> 1.42)
@@ -200,12 +191,19 @@ GEM
200
191
  fog-core
201
192
  fog-json
202
193
  fog-xml
194
+ fog-internet-archive (0.0.1)
195
+ fog-core
196
+ fog-json
197
+ fog-xml
198
+ fog-joyent (0.0.1)
199
+ fog-core (~> 1.42)
200
+ fog-json (>= 1.0)
203
201
  fog-json (1.0.2)
204
202
  fog-core (~> 1.0)
205
203
  multi_json (~> 1.10)
206
- fog-local (0.3.1)
204
+ fog-local (0.4.0)
207
205
  fog-core (~> 1.27)
208
- fog-openstack (0.1.20)
206
+ fog-openstack (0.1.21)
209
207
  fog-core (>= 1.40)
210
208
  fog-json (>= 1.0)
211
209
  ipaddress (>= 0.8)
@@ -213,7 +211,7 @@ GEM
213
211
  fog-core (~> 1.27)
214
212
  fog-json (~> 1.0)
215
213
  fog-xml (~> 0.1)
216
- fog-profitbricks (3.0.0)
214
+ fog-profitbricks (4.0.0)
217
215
  fog-core (~> 1.42)
218
216
  fog-json (~> 1.0)
219
217
  fog-rackspace (0.1.5)
@@ -250,7 +248,7 @@ GEM
250
248
  fog-voxel (0.1.0)
251
249
  fog-core
252
250
  fog-xml
253
- fog-vsphere (1.9.1)
251
+ fog-vsphere (1.12.0)
254
252
  fog-core
255
253
  rbvmomi (~> 1.9)
256
254
  fog-xenserver (0.3.0)
@@ -259,32 +257,27 @@ GEM
259
257
  fog-xml (0.1.3)
260
258
  fog-core
261
259
  nokogiri (>= 1.5.11, < 2.0.0)
262
- font-awesome-sass (4.7.0)
263
- sass (>= 3.2)
264
260
  formatador (0.2.5)
265
- geocoder (1.4.3)
266
- globalid (0.3.7)
267
- activesupport (>= 4.1.0)
268
- hashie (3.5.5)
261
+ geocoder (1.4.4)
262
+ globalid (0.4.0)
263
+ activesupport (>= 4.2.0)
264
+ hashie (3.5.6)
269
265
  http-cookie (1.0.3)
270
266
  domain_name (~> 0.5)
271
267
  httpclient (2.8.3)
272
- i18n (0.8.1)
268
+ i18n (0.8.6)
273
269
  identicon (0.0.5)
274
270
  chunky_png
275
271
  inflecto (0.0.2)
276
272
  ipaddress (0.8.3)
277
- jbuilder (2.6.3)
278
- activesupport (>= 3.0.0, < 5.2)
279
- multi_json (~> 1.2)
273
+ jbuilder (2.7.0)
274
+ activesupport (>= 4.2.0)
275
+ multi_json (>= 1.2)
280
276
  jquery-rails (4.3.1)
281
277
  rails-dom-testing (>= 1, < 3)
282
278
  railties (>= 4.2.0)
283
279
  thor (>= 0.14, < 2.0)
284
- jquery-turbolinks (2.1.0)
285
- railties (>= 3.1.0)
286
- turbolinks
287
- js_regex (1.2.2)
280
+ js_regex (1.2.3)
288
281
  regexp_parser (>= 0.3.6, <= 0.5.0)
289
282
  json (1.8.6)
290
283
  launchy (2.4.3)
@@ -296,19 +289,18 @@ GEM
296
289
  rb-inotify (~> 0.9, >= 0.9.7)
297
290
  loofah (2.0.3)
298
291
  nokogiri (>= 1.5.9)
299
- mail (2.6.4)
292
+ mail (2.6.6)
300
293
  mime-types (>= 1.16, < 4)
301
294
  method_source (0.8.2)
302
295
  mime-types (3.1)
303
296
  mime-types-data (~> 3.2015)
304
297
  mime-types-data (3.2016.0521)
305
- mimemagic (0.3.2)
306
- mini_portile2 (2.1.0)
307
- minitest (5.10.1)
308
- multi_json (1.12.1)
298
+ mini_portile2 (2.2.0)
299
+ minitest (5.10.3)
300
+ multi_json (1.12.2)
309
301
  multipart-post (2.0.0)
310
302
  mustache (1.0.5)
311
- mvpkit (1.1.1)
303
+ mvpkit (1.1.2)
312
304
  carrierwave
313
305
  cloudinary
314
306
  faraday
@@ -323,11 +315,11 @@ GEM
323
315
  sitemap_generator
324
316
  slack-notifier
325
317
  netrc (0.11.0)
326
- nio4r (2.0.0)
327
- nokogiri (1.7.1)
328
- mini_portile2 (~> 2.1.0)
318
+ nio4r (2.1.0)
319
+ nokogiri (1.8.0)
320
+ mini_portile2 (~> 2.2.0)
329
321
  orm_adapter (0.5.0)
330
- pg (0.20.0)
322
+ pg (0.21.0)
331
323
  polyamorous (1.3.1)
332
324
  activerecord (>= 3.0)
333
325
  postmark (1.10.0)
@@ -336,117 +328,140 @@ GEM
336
328
  postmark-rails (0.15.0)
337
329
  actionmailer (>= 3.0.0)
338
330
  postmark (~> 1.10.0)
339
- public_suffix (2.0.5)
340
- puma (3.8.2)
341
- rack (2.0.1)
331
+ public_suffix (3.0.0)
332
+ puma (3.10.0)
333
+ rack (2.0.3)
342
334
  rack-canonical-host (0.2.3)
343
335
  addressable (> 0, < 3)
344
336
  rack (>= 1.0.0, < 3)
345
- rack-protection (1.5.3)
337
+ rack-protection (2.0.0)
346
338
  rack
347
339
  rack-ssl-enforcer (0.2.9)
348
340
  rack-test (0.6.3)
349
341
  rack (>= 1.0)
350
- rails (5.0.2)
351
- actioncable (= 5.0.2)
352
- actionmailer (= 5.0.2)
353
- actionpack (= 5.0.2)
354
- actionview (= 5.0.2)
355
- activejob (= 5.0.2)
356
- activemodel (= 5.0.2)
357
- activerecord (= 5.0.2)
358
- activesupport (= 5.0.2)
359
- bundler (>= 1.3.0, < 2.0)
360
- railties (= 5.0.2)
342
+ rails (5.0.6)
343
+ actioncable (= 5.0.6)
344
+ actionmailer (= 5.0.6)
345
+ actionpack (= 5.0.6)
346
+ actionview (= 5.0.6)
347
+ activejob (= 5.0.6)
348
+ activemodel (= 5.0.6)
349
+ activerecord (= 5.0.6)
350
+ activesupport (= 5.0.6)
351
+ bundler (>= 1.3.0)
352
+ railties (= 5.0.6)
361
353
  sprockets-rails (>= 2.0.0)
362
- rails-dom-testing (2.0.2)
363
- activesupport (>= 4.2.0, < 6.0)
364
- nokogiri (~> 1.6)
354
+ rails-dom-testing (2.0.3)
355
+ activesupport (>= 4.2.0)
356
+ nokogiri (>= 1.6)
365
357
  rails-html-sanitizer (1.0.3)
366
358
  loofah (~> 2.0)
367
- railties (5.0.2)
368
- actionpack (= 5.0.2)
369
- activesupport (= 5.0.2)
359
+ railties (5.0.6)
360
+ actionpack (= 5.0.6)
361
+ activesupport (= 5.0.6)
370
362
  method_source
371
363
  rake (>= 0.8.7)
372
364
  thor (>= 0.18.1, < 2.0)
373
365
  rake (12.0.0)
374
- ransack (1.8.2)
366
+ ransack (1.8.3)
375
367
  actionpack (>= 3.0)
376
368
  activerecord (>= 3.0)
377
369
  activesupport (>= 3.0)
378
370
  i18n
379
371
  polyamorous (~> 1.3)
380
- rb-fsevent (0.9.8)
381
- rb-inotify (0.9.8)
382
- ffi (>= 0.5.0)
383
- rbvmomi (1.11.0)
372
+ rb-fsevent (0.10.2)
373
+ rb-inotify (0.9.10)
374
+ ffi (>= 0.5.0, < 2)
375
+ rbvmomi (1.11.3)
384
376
  builder (~> 3.0)
385
377
  json (>= 1.8)
386
378
  nokogiri (~> 1.5)
387
379
  trollop (~> 2.1)
380
+ react-rails (2.2.1)
381
+ babel-transpiler (>= 0.7.0)
382
+ connection_pool
383
+ execjs
384
+ railties (>= 3.2)
385
+ tilt
388
386
  redis (3.3.3)
389
387
  redis-namespace (1.5.3)
390
388
  redis (~> 3.0, >= 3.0.4)
391
- regexp_parser (0.4.3)
392
- responders (2.3.0)
393
- railties (>= 4.2.0, < 5.1)
394
- rest-client (2.0.1)
389
+ regexp_parser (0.4.4)
390
+ responders (2.4.0)
391
+ actionpack (>= 4.2.0, < 5.3)
392
+ railties (>= 4.2.0, < 5.3)
393
+ rest-client (2.0.2)
395
394
  http-cookie (>= 1.0.2, < 2.0)
396
395
  mime-types (>= 1.16, < 4.0)
397
396
  netrc (~> 0.8)
398
- rollbar (2.14.1)
397
+ rollbar (2.15.1)
399
398
  multi_json
400
- sass (3.4.23)
399
+ sass (3.5.1)
400
+ sass-listen (~> 4.0.0)
401
+ sass-listen (4.0.0)
402
+ rb-fsevent (~> 0.9, >= 0.9.4)
403
+ rb-inotify (~> 0.9, >= 0.9.7)
401
404
  sass-rails (5.0.6)
402
405
  railties (>= 4.0.0, < 6)
403
406
  sass (~> 3.1)
404
407
  sprockets (>= 2.8, < 4.0)
405
408
  sprockets-rails (>= 2.0, < 4.0)
406
409
  tilt (>= 1.1, < 3)
407
- sidekiq (4.2.10)
410
+ sidekiq (5.0.4)
408
411
  concurrent-ruby (~> 1.0)
409
412
  connection_pool (~> 2.2, >= 2.2.0)
410
413
  rack-protection (>= 1.5.0)
411
- redis (~> 3.2, >= 3.2.1)
412
- simple_form (3.4.0)
413
- actionpack (> 4, < 5.1)
414
- activemodel (> 4, < 5.1)
414
+ redis (~> 3.3, >= 3.3.3)
415
+ simple_form (3.5.0)
416
+ actionpack (> 4, < 5.2)
417
+ activemodel (> 4, < 5.2)
415
418
  sitemap_generator (5.3.1)
416
419
  builder (~> 3.0)
417
- slack-notifier (2.1.0)
418
- spring (2.0.1)
420
+ slack-notifier (2.3.1)
421
+ spring (2.0.2)
419
422
  activesupport (>= 4.2)
420
423
  spring-watcher-listen (2.0.1)
421
424
  listen (>= 2.7, < 4.0)
422
425
  spring (>= 1.2, < 3.0)
423
- sprockets-rails (3.2.0)
426
+ sprockets (3.7.1)
427
+ concurrent-ruby (~> 1.0)
428
+ rack (> 1, < 3)
429
+ sprockets-rails (3.2.1)
424
430
  actionpack (>= 4.0)
425
431
  activesupport (>= 4.0)
426
432
  sprockets (>= 3.0.0)
427
- stripe (1.58.0)
428
- rest-client (>= 1.4, < 4.0)
429
- thor (0.19.4)
433
+ stripe (3.3.1)
434
+ faraday (~> 0.9)
435
+ stripe-rails (1.1.1)
436
+ rails (>= 3)
437
+ responders
438
+ stripe
439
+ thor (0.20.0)
430
440
  thread_safe (0.3.6)
431
- tilt (2.0.7)
441
+ tilt (2.0.8)
432
442
  trollop (2.1.2)
433
443
  turbolinks (5.0.1)
434
444
  turbolinks-source (~> 5)
435
- turbolinks-source (5.0.0)
445
+ turbolinks-source (5.0.3)
436
446
  tzinfo (1.2.3)
437
447
  thread_safe (~> 0.1)
438
- uglifier (3.1.13)
448
+ uglifier (3.2.0)
439
449
  execjs (>= 0.3.0, < 3)
440
450
  unf (0.1.4)
441
451
  unf_ext
442
452
  unf_ext (0.0.7.4)
453
+ uniform_notifier (1.10.0)
443
454
  warden (1.2.7)
444
455
  rack (>= 1.0)
445
- web-console (3.5.0)
456
+ web-console (3.5.1)
446
457
  actionview (>= 5.0)
447
458
  activemodel (>= 5.0)
448
459
  bindex (>= 0.4.0)
449
460
  railties (>= 5.0)
461
+ webpacker (2.0)
462
+ activesupport (>= 4.2)
463
+ multi_json (~> 1.2)
464
+ railties (>= 4.2)
450
465
  websocket-driver (0.6.5)
451
466
  websocket-extensions (>= 0.1.0)
452
467
  websocket-extensions (0.1.2)
@@ -461,16 +476,21 @@ DEPENDENCIES
461
476
  algoliasearch-rails
462
477
  better_errors
463
478
  binding_of_caller
479
+ bullet
464
480
  byebug
465
- carrierwave (= 0.11.2)
481
+ carrierwave
466
482
  client_side_validations
467
483
  client_side_validations-simple_form
484
+ cloudinary
468
485
  devise
469
486
  dotenv-rails
470
- font-awesome-sass
487
+ faraday
488
+ fog
489
+ fog-aws
490
+ geocoder
491
+ hashie
471
492
  identicon
472
493
  jbuilder (~> 2.5)
473
- jquery-turbolinks
474
494
  letter_opener
475
495
  listen (~> 3.0.5)
476
496
  mustache
@@ -478,23 +498,31 @@ DEPENDENCIES
478
498
  pg
479
499
  postmark-rails
480
500
  puma (~> 3.0)
501
+ rack-canonical-host
502
+ rack-ssl-enforcer
481
503
  rails (~> 5.0.1)
482
504
  ransack
505
+ react-rails
483
506
  redis
484
507
  redis-namespace
508
+ rollbar
509
+ sass-rails
485
510
  sidekiq
486
511
  simple_form
512
+ sitemap_generator
513
+ slack-notifier
487
514
  spring
488
515
  spring-watcher-listen (~> 2.0.0)
489
- sprockets!
490
- stripe-rails!
516
+ sprockets
517
+ stripe-rails
491
518
  turbolinks (~> 5)
492
519
  uglifier
493
- web-console (>= 3.3.0)
520
+ web-console
521
+ webpacker
494
522
  workflow
495
523
 
496
524
  RUBY VERSION
497
525
  ruby 2.4.0p0
498
526
 
499
527
  BUNDLED WITH
500
- 1.14.6
528
+ 1.15.4