ensure_domain 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.rdoc +32 -0
- data/Rakefile +1 -0
- data/ensure_domain.gemspec +23 -0
- data/lib/ensure_domain/version.rb +3 -0
- data/lib/ensure_domain.rb +17 -0
- metadata +81 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7160402686c9fb8edd2e426907c496c473599368
|
4
|
+
data.tar.gz: 37cd236c0568e0db37ae26a744686c11496a18ef
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8c10f3a78cc47455a1f1cd2dccca920f9d3902d31f3faba73b6010259eabde57158552cbe0e2df02fe1e007c2bd2a06d7c6e517580121de0a92586ca0908cd05
|
7
|
+
data.tar.gz: 640b3fc81fabb1d61475f4e85234fdb2d69b603684bb7d7d588fc4db7ceaec50b3779e212c85e506afe1bf2f2148f6ded63aa6ef0149a1afd73f4aafa9f2bac6
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Aske Hansen
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
= EnsureDomain
|
2
|
+
|
3
|
+
This gem helps your rails app redirect all request to your specified domain.
|
4
|
+
|
5
|
+
Example: myhomepage.com => www.myhomepage.com
|
6
|
+
|
7
|
+
== Installation
|
8
|
+
1. Add gem in your gemfile:
|
9
|
+
|
10
|
+
gem "ensure_domain"
|
11
|
+
|
12
|
+
2. include the module in your application_controller.rb file:
|
13
|
+
|
14
|
+
# app/controllers/application_controller.rb
|
15
|
+
|
16
|
+
class ApplicationController < ActionController::Base
|
17
|
+
include EnsureDomain
|
18
|
+
end
|
19
|
+
|
20
|
+
3. Specify your domain in your production.rb file:
|
21
|
+
|
22
|
+
# config/environments/production.rb
|
23
|
+
|
24
|
+
MyApp::Application.configure do
|
25
|
+
config.action_mailer.default_url_options = { host: "www.myhomepage.com" }
|
26
|
+
end
|
27
|
+
|
28
|
+
All requests should now redirect to www.myhomepage.com
|
29
|
+
|
30
|
+
== License
|
31
|
+
|
32
|
+
This project rocks and uses MIT-LICENSE.
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'ensure_domain/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "ensure_domain"
|
8
|
+
spec.version = EnsureDomain::VERSION
|
9
|
+
spec.authors = ["Aske Hansen"]
|
10
|
+
spec.email = ["aske@deeco.dk"]
|
11
|
+
spec.description = "This gem helps your rails app redirect all request to your specified domain"
|
12
|
+
spec.summary = "Ensures your specific domain"
|
13
|
+
spec.homepage = "https://github.com/askehansen/ensure_domain"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require "ensure_domain/version"
|
2
|
+
|
3
|
+
module EnsureDomain
|
4
|
+
def self.included(base)
|
5
|
+
base.before_filter :ensure_domain
|
6
|
+
end
|
7
|
+
|
8
|
+
def ensure_domain
|
9
|
+
default_url_options = Weboptimist::Application.config.action_mailer.default_url_options
|
10
|
+
if default_url_options.nil?
|
11
|
+
puts "WARNING: You must set config.action_mailer.default_url_options = { host: 'www.yourdomain.com' } in order to the 'ensure_domain' gem to work as intended"
|
12
|
+
elsif Rails.env.production? && request.host != default_url_options[:host]
|
13
|
+
querystring = "?#{request.query_string}" unless request.query_string.empty?
|
14
|
+
redirect_to "#{request.protocol}#{default_host}#{request.path}#{querystring}", status: 301
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ensure_domain
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Aske Hansen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-04-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: This gem helps your rails app redirect all request to your specified
|
42
|
+
domain
|
43
|
+
email:
|
44
|
+
- aske@deeco.dk
|
45
|
+
executables: []
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- .gitignore
|
50
|
+
- Gemfile
|
51
|
+
- LICENSE.txt
|
52
|
+
- README.rdoc
|
53
|
+
- Rakefile
|
54
|
+
- ensure_domain.gemspec
|
55
|
+
- lib/ensure_domain.rb
|
56
|
+
- lib/ensure_domain/version.rb
|
57
|
+
homepage: https://github.com/askehansen/ensure_domain
|
58
|
+
licenses:
|
59
|
+
- MIT
|
60
|
+
metadata: {}
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
requirements: []
|
76
|
+
rubyforge_project:
|
77
|
+
rubygems_version: 2.0.2
|
78
|
+
signing_key:
|
79
|
+
specification_version: 4
|
80
|
+
summary: Ensures your specific domain
|
81
|
+
test_files: []
|