short_rails 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/MIT-LICENSE +20 -0
- data/README.md +65 -0
- data/Rakefile +40 -0
- data/app/assets/javascripts/short_rails/application.js +15 -0
- data/app/assets/stylesheets/short_rails/application.css +13 -0
- data/app/controllers/short_rails/application_controller.rb +4 -0
- data/app/controllers/short_rails/short_urls_controller.rb +107 -0
- data/app/helpers/short_rails/application_helper.rb +4 -0
- data/app/models/short_rails/short_url.rb +7 -0
- data/app/views/layouts/short_rails/application.html.erb +14 -0
- data/config/routes.rb +7 -0
- data/db/migrate/20121123124825_create_short_rails_short_urls.rb +11 -0
- data/db/migrate/20130108094545_add_url_short_param_to_short_urls.rb +5 -0
- data/lib/short_rails.rb +4 -0
- data/lib/short_rails/engine.rb +5 -0
- data/lib/short_rails/version.rb +3 -0
- data/lib/tasks/short_rails_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20121123133344_create_short_rails_short_urls.short_rails.rb +12 -0
- data/test/dummy/db/migrate/20130108094709_add_url_short_param_to_short_urls.short_rails.rb +6 -0
- data/test/dummy/db/schema.rb +24 -0
- data/test/dummy/log/development.log +8830 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/short_rails_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +175 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/404.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/422.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/500.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
23
|
+
</div>
|
24
|
+
</body>
|
25
|
+
</html>
|
File without changes
|
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
6
|
+
require 'rails/commands'
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# Configure Rails Environment
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
|
4
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
5
|
+
require "rails/test_help"
|
6
|
+
|
7
|
+
Rails.backtrace_cleaner.remove_silencers!
|
8
|
+
|
9
|
+
# Load support files
|
10
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
11
|
+
|
12
|
+
# Load fixtures from the engine
|
13
|
+
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
|
14
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,175 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: short_rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mathias Walker
|
8
|
+
- Pirmin Kalberer
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2015-02-09 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rails
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ~>
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 3.2.13
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 3.2.13
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: rqrcode_png
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ! '>='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ! '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: sqlite3
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ! '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
description: URL shortener for Rails
|
57
|
+
email:
|
58
|
+
- info@sourcepole.ch
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- MIT-LICENSE
|
64
|
+
- README.md
|
65
|
+
- Rakefile
|
66
|
+
- app/assets/javascripts/short_rails/application.js
|
67
|
+
- app/assets/stylesheets/short_rails/application.css
|
68
|
+
- app/controllers/short_rails/application_controller.rb
|
69
|
+
- app/controllers/short_rails/short_urls_controller.rb
|
70
|
+
- app/helpers/short_rails/application_helper.rb
|
71
|
+
- app/models/short_rails/short_url.rb
|
72
|
+
- app/views/layouts/short_rails/application.html.erb
|
73
|
+
- config/routes.rb
|
74
|
+
- db/migrate/20121123124825_create_short_rails_short_urls.rb
|
75
|
+
- db/migrate/20130108094545_add_url_short_param_to_short_urls.rb
|
76
|
+
- lib/short_rails.rb
|
77
|
+
- lib/short_rails/engine.rb
|
78
|
+
- lib/short_rails/version.rb
|
79
|
+
- lib/tasks/short_rails_tasks.rake
|
80
|
+
- test/dummy/README.rdoc
|
81
|
+
- test/dummy/Rakefile
|
82
|
+
- test/dummy/app/assets/javascripts/application.js
|
83
|
+
- test/dummy/app/assets/stylesheets/application.css
|
84
|
+
- test/dummy/app/controllers/application_controller.rb
|
85
|
+
- test/dummy/app/helpers/application_helper.rb
|
86
|
+
- test/dummy/app/views/layouts/application.html.erb
|
87
|
+
- test/dummy/config.ru
|
88
|
+
- test/dummy/config/application.rb
|
89
|
+
- test/dummy/config/boot.rb
|
90
|
+
- test/dummy/config/database.yml
|
91
|
+
- test/dummy/config/environment.rb
|
92
|
+
- test/dummy/config/environments/development.rb
|
93
|
+
- test/dummy/config/environments/production.rb
|
94
|
+
- test/dummy/config/environments/test.rb
|
95
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
96
|
+
- test/dummy/config/initializers/inflections.rb
|
97
|
+
- test/dummy/config/initializers/mime_types.rb
|
98
|
+
- test/dummy/config/initializers/secret_token.rb
|
99
|
+
- test/dummy/config/initializers/session_store.rb
|
100
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
101
|
+
- test/dummy/config/locales/en.yml
|
102
|
+
- test/dummy/config/routes.rb
|
103
|
+
- test/dummy/db/development.sqlite3
|
104
|
+
- test/dummy/db/migrate/20121123133344_create_short_rails_short_urls.short_rails.rb
|
105
|
+
- test/dummy/db/migrate/20130108094709_add_url_short_param_to_short_urls.short_rails.rb
|
106
|
+
- test/dummy/db/schema.rb
|
107
|
+
- test/dummy/log/development.log
|
108
|
+
- test/dummy/public/404.html
|
109
|
+
- test/dummy/public/422.html
|
110
|
+
- test/dummy/public/500.html
|
111
|
+
- test/dummy/public/favicon.ico
|
112
|
+
- test/dummy/script/rails
|
113
|
+
- test/integration/navigation_test.rb
|
114
|
+
- test/short_rails_test.rb
|
115
|
+
- test/test_helper.rb
|
116
|
+
homepage: http://www.sourcepole.ch
|
117
|
+
licenses: []
|
118
|
+
metadata: {}
|
119
|
+
post_install_message:
|
120
|
+
rdoc_options: []
|
121
|
+
require_paths:
|
122
|
+
- lib
|
123
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - ! '>='
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '0'
|
128
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ! '>='
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
requirements: []
|
134
|
+
rubyforge_project:
|
135
|
+
rubygems_version: 2.2.2
|
136
|
+
signing_key:
|
137
|
+
specification_version: 4
|
138
|
+
summary: URL shortener
|
139
|
+
test_files:
|
140
|
+
- test/short_rails_test.rb
|
141
|
+
- test/test_helper.rb
|
142
|
+
- test/dummy/config/environment.rb
|
143
|
+
- test/dummy/config/environments/development.rb
|
144
|
+
- test/dummy/config/environments/production.rb
|
145
|
+
- test/dummy/config/environments/test.rb
|
146
|
+
- test/dummy/config/application.rb
|
147
|
+
- test/dummy/config/initializers/session_store.rb
|
148
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
149
|
+
- test/dummy/config/initializers/mime_types.rb
|
150
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
151
|
+
- test/dummy/config/initializers/secret_token.rb
|
152
|
+
- test/dummy/config/initializers/inflections.rb
|
153
|
+
- test/dummy/config/locales/en.yml
|
154
|
+
- test/dummy/config/boot.rb
|
155
|
+
- test/dummy/config/database.yml
|
156
|
+
- test/dummy/config/routes.rb
|
157
|
+
- test/dummy/README.rdoc
|
158
|
+
- test/dummy/log/development.log
|
159
|
+
- test/dummy/Rakefile
|
160
|
+
- test/dummy/script/rails
|
161
|
+
- test/dummy/config.ru
|
162
|
+
- test/dummy/app/views/layouts/application.html.erb
|
163
|
+
- test/dummy/app/controllers/application_controller.rb
|
164
|
+
- test/dummy/app/helpers/application_helper.rb
|
165
|
+
- test/dummy/app/assets/javascripts/application.js
|
166
|
+
- test/dummy/app/assets/stylesheets/application.css
|
167
|
+
- test/dummy/db/migrate/20130108094709_add_url_short_param_to_short_urls.short_rails.rb
|
168
|
+
- test/dummy/db/migrate/20121123133344_create_short_rails_short_urls.short_rails.rb
|
169
|
+
- test/dummy/db/schema.rb
|
170
|
+
- test/dummy/db/development.sqlite3
|
171
|
+
- test/dummy/public/422.html
|
172
|
+
- test/dummy/public/favicon.ico
|
173
|
+
- test/dummy/public/500.html
|
174
|
+
- test/dummy/public/404.html
|
175
|
+
- test/integration/navigation_test.rb
|