no_www 0.0.2 → 0.0.3

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: a288d270a11a2c86520c16b7c703c4e444a1dafb
4
- data.tar.gz: a4cbc333d604c88801591efdcc46db9930899bae
3
+ metadata.gz: 0f6c25c010ee5dd96ecd028c2c57bd347db3af86
4
+ data.tar.gz: 0a74bcc5fd6124ef4ff27ce57c37f968c5ab903e
5
5
  SHA512:
6
- metadata.gz: d699fb0008cf42b1024ae5cceb8d71b963f1eba28cb66b9d995455da71e76004b3df816fb0b9fc59a085a6fb7afbeffcc54a9391057182f9d3b7da6bbd2cdcc0
7
- data.tar.gz: 71bc792dab82a9c483a5ba1e29787f32a2908fd0bc8f3fc5742e5801fa676c1e4c61b7badec13510caa1e9d14ccde4eb011e0f63ce60090ee61d40f658e798b4
6
+ metadata.gz: 1dadf0896cf762591311b9e704471385bf2364623141e0728eb2734b46348eb837de3b7aa31ec1e91bdc863e5f240c848ef38621fd527338038d90f13c021cde
7
+ data.tar.gz: b7c4b49c83e0b2663ca61ef510152c75087d54d011aba1f8202aec772ae97eba5cd958994f98aec85d52b6547918ceb673114b2f1cbdb54a68e3a5aac84bf6f9
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in no_w_w_w.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 TODO: Write your name
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.md ADDED
@@ -0,0 +1,25 @@
1
+ # NoWWW
2
+
3
+ Redirects your Rails app users to a www-like url.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'no_w_w_w'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ ## Usage
16
+
17
+ Simply install it and Voila!
18
+
19
+ ## Contributing
20
+
21
+ 1. Fork it ( https://github.com/[my-github-username]/no_w_w_w/fork )
22
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
23
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
24
+ 4. Push to the branch (`git push origin my-new-feature`)
25
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,21 @@
1
+ module NoWWW
2
+ class Middleware
3
+ STARTS_WITH_WWW = /^www\./i
4
+ IP_STRING = /^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/i
5
+
6
+ def initialize(app)
7
+ @app = app
8
+ end
9
+
10
+ def call(env)
11
+ uri = URI.parse Rack::Request.new(env).url
12
+ unless uri.host =~ STARTS_WITH_WWW || uri.host =~ IP_STRING
13
+ uri.host = "www.#{uri.host}"
14
+ puts "NoWWW: Redirected to #{uri.to_s}"
15
+ [301, { 'Location' => uri.to_s}, ['Redirecting...']]
16
+ else
17
+ @app.call(env)
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,9 @@
1
+ require 'rails'
2
+
3
+ module NoWWW
4
+ class Railtie < Rails::Railtie
5
+ initializer "no_www.insert_middleware" do |app|
6
+ app.middleware.use Middleware
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ module NoWWW
2
+ VERSION = "0.0.3"
3
+ end
data/no_w_w_w.gemspec ADDED
@@ -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 'no_w_w_w/version'
5
+
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = "no_www"
9
+ spec.version = NoWWW::VERSION
10
+ spec.authors = ["Alexander Panasyuk"]
11
+ spec.email = ["panasmeister@gmail.com"]
12
+ spec.summary = %q{Redirects your users to www-like url.}
13
+ spec.description = %q{Redirects your users to www-like url.}
14
+ spec.homepage = "http://github.com/panasyuk/nowww"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files`.split("\n")
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_runtime_dependency "rails", "~> 4.0"
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: no_www
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Panasyuk
@@ -59,7 +59,16 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".gitignore"
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
62
67
  - lib/no_w_w_w.rb
68
+ - lib/no_w_w_w/middleware.rb
69
+ - lib/no_w_w_w/railtie.rb
70
+ - lib/no_w_w_w/version.rb
71
+ - no_w_w_w.gemspec
63
72
  homepage: http://github.com/panasyuk/nowww
64
73
  licenses:
65
74
  - MIT