minimum_viable_product 0.5.7 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f6dbedaa83c3a5f97ed56da1fe138b60ecef5ce9
4
- data.tar.gz: 1310e8d0a35f59fe49d6726367a0a7d7262de278
3
+ metadata.gz: c0894c991f9503fb63a8c99a3b20b22c37f60e03
4
+ data.tar.gz: 239c6fa896b54ae107b3f5ffd4c798d0bc227ca2
5
5
  SHA512:
6
- metadata.gz: 0b80db1968c7abfe8779b92219ac4608c694cacaa00429adf341885626c30a2c6e93eb3b334aa05425ff4f0ca07f0e223535fa0d4fc949790c338b36fe704998
7
- data.tar.gz: 7f1aefe199728973fee7e7d908460bdfcd1151ec118f9b0cfffa5cd9b45bb4fdb5bfd184fabdfa8770d4c038d3e4cbab0861ff484d4452f925d8f919decbe37d
6
+ metadata.gz: eb5636070c2f4c4b89796deea6f98111e7b9fdbf1e6fa07c71bf13831ebe9670cca7a44aeeebf5a3f959172346eaa2ad1e73c8ffdbed24767498034fdb9bf914
7
+ data.tar.gz: 8ec8e4a0c0a1410bf77ff788fe37b309d9ff871a88e953e4ff17b4e1785d651a343e687c6485451199fe1ef5517e31fc0fb48e13ba2f6e430790d32c41696b7e
@@ -1,5 +1,5 @@
1
1
  module MinimumViableProduct
2
- module ApplicationHelper
2
+ module BodyHelper
3
3
  def body_id
4
4
  "#{controller_name}-#{action_name}-page"
5
5
  end
@@ -3,13 +3,10 @@
3
3
  <head>
4
4
  <%= render('layouts/minimum_viable_product/meta').gsub(/\n/,'').html_safe %>
5
5
 
6
- <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
7
6
  <%= yield :stylesheets %>
8
7
 
9
- <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
10
8
  <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]-->
11
9
 
12
- <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
13
10
  <%= yield :javascripts %>
14
11
  <%= csrf_meta_tags %>
15
12
 
@@ -4,7 +4,6 @@ require 'faraday'
4
4
  require 'fog'
5
5
  require 'geocoder'
6
6
  require 'hashie'
7
- require 'jquery-rails'
8
7
  require 'rack-canonical-host'
9
8
  require 'rack-ssl-enforcer'
10
9
  require 'rollbar'
@@ -1,3 +1,3 @@
1
1
  module MinimumViableProduct
2
- VERSION = "0.5.7"
2
+ VERSION = "0.6.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimum_viable_product
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.7
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Hunter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-30 00:00:00.000000000 Z
11
+ date: 2016-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: analytics-ruby
@@ -122,20 +122,6 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
- - !ruby/object:Gem::Dependency
126
- name: jquery-rails
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - ">="
130
- - !ruby/object:Gem::Version
131
- version: '0'
132
- type: :runtime
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - ">="
137
- - !ruby/object:Gem::Version
138
- version: '0'
139
125
  - !ruby/object:Gem::Dependency
140
126
  name: rack-canonical-host
141
127
  requirement: !ruby/object:Gem::Requirement
@@ -348,13 +334,10 @@ files:
348
334
  - app/controllers/concerns/minimum_viable_product/seo_concern.rb
349
335
  - app/controllers/concerns/minimum_viable_product/session_concern.rb
350
336
  - app/controllers/minimum_viable_product/analytics_controller.rb
351
- - app/controllers/minimum_viable_product/controller.rb
352
337
  - app/controllers/minimum_viable_product/seo_controller.rb
353
338
  - app/controllers/minimum_viable_product/styleguide_controller.rb
354
- - app/helpers/minimum_viable_product/analytics_helper.rb
355
- - app/helpers/minimum_viable_product/application_helper.rb
339
+ - app/helpers/minimum_viable_product/body_helper.rb
356
340
  - app/helpers/minimum_viable_product/bootstrap_helper.rb
357
- - app/helpers/minimum_viable_product/seo_helper.rb
358
341
  - app/helpers/minimum_viable_product/styleguide_helper.rb
359
342
  - app/models/concerns/minimum_viable_product/slugification.rb
360
343
  - app/views/layouts/minimum_viable_product/_instrumentation.html.erb
@@ -1,8 +0,0 @@
1
- module MinimumViableProduct
2
- class Controller < ActionController::Base
3
- include MinimumViableProduct::AnalyticsConcern
4
- include MinimumViableProduct::SEOConcern
5
- include MinimumViableProduct::SessionConcern
6
- include Rails.application.routes.url_helpers
7
- end
8
- end
@@ -1,4 +0,0 @@
1
- module MinimumViableProduct
2
- module AnalyticsHelper
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module MinimumViableProduct
2
- module SeoHelper
3
- end
4
- end