minimum_viable_product 0.6.0 → 0.6.1

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: c0894c991f9503fb63a8c99a3b20b22c37f60e03
4
- data.tar.gz: 239c6fa896b54ae107b3f5ffd4c798d0bc227ca2
3
+ metadata.gz: e5a679d084c129a1fd35b87fa3a70a2b321f3fd8
4
+ data.tar.gz: e8a1093ce6915d717b5cc91df630dc3f7f57986d
5
5
  SHA512:
6
- metadata.gz: eb5636070c2f4c4b89796deea6f98111e7b9fdbf1e6fa07c71bf13831ebe9670cca7a44aeeebf5a3f959172346eaa2ad1e73c8ffdbed24767498034fdb9bf914
7
- data.tar.gz: 8ec8e4a0c0a1410bf77ff788fe37b309d9ff871a88e953e4ff17b4e1785d651a343e687c6485451199fe1ef5517e31fc0fb48e13ba2f6e430790d32c41696b7e
6
+ metadata.gz: df034dfd5b9de87ce81b334d16f95aef20ad71cbec2e5156b29df0016c3f6ef4913b6a8943e17c94ea0b2cdffb744f01d12a6128e853ee288270526d2020209f
7
+ data.tar.gz: 331687913d98446f49dce742d03e4df4f43f3a6a8736aa508779ac52c38dab943a1b79061baa3c317e2cb938a0a2b99498a4750392d99461d8807985a042569f
@@ -1,7 +1,5 @@
1
- require_dependency "minimum_viable_product/controller"
2
-
3
1
  module MinimumViableProduct
4
- class AnalyticsController < Controller
2
+ class AnalyticsController < ActionController::Base
5
3
  def optout
6
4
  cookies[AnalyticsConcern::INVISIBLE_SESSION_COOKIE] = {
7
5
  :value => true,
@@ -1,7 +1,5 @@
1
- require_dependency "minimum_viable_product/controller"
2
-
3
1
  module MinimumViableProduct
4
- class SeoController < Controller
2
+ class SeoController < ActionController::Base
5
3
  def robots
6
4
  render text: %%
7
5
  User-agent: *
@@ -1,7 +1,5 @@
1
- require_dependency "minimum_viable_product/controller"
2
-
3
1
  module MinimumViableProduct
4
- class StyleguideController < Controller
2
+ class StyleguideController < ActionController::Base
5
3
  def index
6
4
  render layout: 'minimum_viable_product/basic'
7
5
  end
@@ -1,3 +1,3 @@
1
1
  module MinimumViableProduct
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimum_viable_product
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Hunter