minimum_viable_product 0.7.8 → 0.7.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/config/routes.rb +1 -9
- data/lib/tasks/sitemap.rake +1 -1
- data/minimum_viable_product.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb95491c19db38820d311026b3bb8401f617186f
|
4
|
+
data.tar.gz: 9f8f1157a3f2885b90ef3b24672ab2ce32aa76dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31fdbf18a48b26514c233f39c8786318021e24e42d085a876f6b10e3cb265caef4c39f2a02ddc8de9d2c3da2a3a55eb8169ba5ddf903040950774bf33557f6aa
|
7
|
+
data.tar.gz: d9109fdc4595421c3646d8a50372c140996596ad53600131bc86fb619ab7c9dc3760fe4c3d87cb5d4df481788cd3b0ea684857735a7d5fecda67fd1e01f7bdd5
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.9
|
data/config/routes.rb
CHANGED
@@ -1,14 +1,6 @@
|
|
1
1
|
MinimumViableProduct::Engine.routes.draw do
|
2
|
-
if Rails.env.development?
|
3
|
-
get 'styleguide', to: 'styleguide#index'
|
4
|
-
get 'styleguide/bootstrap', to: 'styleguide#bootstrap'
|
5
|
-
['basic','cover','carousel'].each do |layout|
|
6
|
-
get "styleguide/layouts/#{layout}", to: "styleguide#layout_#{layout}"
|
7
|
-
end
|
8
|
-
end
|
9
|
-
|
10
2
|
get 'robots.txt', to: 'seo#robots', as: :robots
|
11
|
-
get '/sitemap.xml.gz', to: redirect("https://#{ENV['AWS_S3_BUCKET']}.s3.amazonaws.com/#{
|
3
|
+
get '/sitemap.xml.gz', to: redirect("https://#{ENV['AWS_S3_BUCKET']}.s3.amazonaws.com/#{Rails.application.class.parent_name.underscore}/sitemaps/sitemap.xml.gz"), as: :sitemap
|
12
4
|
|
13
5
|
get 'analytics/optout', to: 'analytics#optout'
|
14
6
|
end
|
data/lib/tasks/sitemap.rake
CHANGED
@@ -15,7 +15,7 @@ namespace :sitemap do
|
|
15
15
|
|
16
16
|
Dir.entries(File.join(Rails.root, "tmp", "sitemaps")).each do |file_name|
|
17
17
|
next if ['.', '..', '.DS_Store'].include? file_name
|
18
|
-
path = "#{
|
18
|
+
path = "#{Rails.application.class.parent_name.underscore}/sitemaps/#{file_name}"
|
19
19
|
file = File.new(File.join(Rails.root, "tmp", "sitemaps", file_name))
|
20
20
|
|
21
21
|
begin
|
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: minimum_viable_product 0.7.
|
5
|
+
# stub: minimum_viable_product 0.7.9 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "minimum_viable_product"
|
9
|
-
s.version = "0.7.
|
9
|
+
s.version = "0.7.9"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["Ian Hunter"]
|
14
|
-
s.date = "2017-01-
|
14
|
+
s.date = "2017-01-14"
|
15
15
|
s.description = "Built for Developers. Ideal for MVPs, product ideation and validation."
|
16
16
|
s.email = "ianhunter@gmail.com"
|
17
17
|
s.extra_rdoc_files = [
|
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.7.
|
4
|
+
version: 0.7.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian Hunter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: carrierwave
|