contact 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/.rspec +1 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +83 -0
- data/README +11 -0
- data/Rakefile +7 -0
- data/app/controllers/application_controller.rb +3 -0
- data/app/controllers/contacts_controller.rb +28 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/mailers/mailer.rb +11 -0
- data/app/models/form.rb +34 -0
- data/app/views/contacts/new.haml +24 -0
- data/app/views/layouts/application.html.erb +14 -0
- data/app/views/mailer/contact_us.html.haml +1 -0
- data/app/views/mailer/contact_us.text.haml +1 -0
- data/autotest/discover.rb +2 -0
- data/config/application.rb +42 -0
- data/config/boot.rb +13 -0
- data/config/contact.yml +14 -0
- data/config/database.yml +22 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +26 -0
- data/config/environments/production.rb +49 -0
- data/config/environments/test.rb +35 -0
- data/config/initializers/contact_mailer_setup.rb +21 -0
- data/config/initializers/mime_types.rb +6 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +6 -0
- data/config.ru +4 -0
- data/contact.gemspec +24 -0
- data/db/seeds.rb +7 -0
- data/doc/README_FOR_APP +2 -0
- data/lib/contact/engine.rb +9 -0
- data/lib/contact/version.rb +3 -0
- data/lib/contact.rb +3 -0
- data/lib/mail_interceptor.rb +6 -0
- data/lib/tasks/.gitkeep +0 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +26 -0
- data/public/favicon.ico +0 -0
- data/public/images/rails.png +0 -0
- data/public/index.html +239 -0
- data/public/javascripts/application.js +2 -0
- data/public/javascripts/controls.js +965 -0
- data/public/javascripts/dragdrop.js +974 -0
- data/public/javascripts/effects.js +1123 -0
- data/public/javascripts/prototype.js +6001 -0
- data/public/javascripts/rails.js +175 -0
- data/public/robots.txt +5 -0
- data/public/stylesheets/.gitkeep +0 -0
- data/script/rails +6 -0
- data/spec/mailers/contact_mailer_spec.rb +5 -0
- data/spec/spec_helper.rb +27 -0
- data/test/performance/browsing_test.rb +9 -0
- data/test/test_helper.rb +13 -0
- data/vendor/plugins/.gitkeep +0 -0
- metadata +155 -0
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--colour
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
abstract (1.0.0)
|
5
|
+
actionmailer (3.0.3)
|
6
|
+
actionpack (= 3.0.3)
|
7
|
+
mail (~> 2.2.9)
|
8
|
+
actionpack (3.0.3)
|
9
|
+
activemodel (= 3.0.3)
|
10
|
+
activesupport (= 3.0.3)
|
11
|
+
builder (~> 2.1.2)
|
12
|
+
erubis (~> 2.6.6)
|
13
|
+
i18n (~> 0.4)
|
14
|
+
rack (~> 1.2.1)
|
15
|
+
rack-mount (~> 0.6.13)
|
16
|
+
rack-test (~> 0.5.6)
|
17
|
+
tzinfo (~> 0.3.23)
|
18
|
+
activemodel (3.0.3)
|
19
|
+
activesupport (= 3.0.3)
|
20
|
+
builder (~> 2.1.2)
|
21
|
+
i18n (~> 0.4)
|
22
|
+
activerecord (3.0.3)
|
23
|
+
activemodel (= 3.0.3)
|
24
|
+
activesupport (= 3.0.3)
|
25
|
+
arel (~> 2.0.2)
|
26
|
+
tzinfo (~> 0.3.23)
|
27
|
+
activeresource (3.0.3)
|
28
|
+
activemodel (= 3.0.3)
|
29
|
+
activesupport (= 3.0.3)
|
30
|
+
activesupport (3.0.3)
|
31
|
+
arel (2.0.9)
|
32
|
+
builder (2.1.2)
|
33
|
+
diff-lcs (1.1.2)
|
34
|
+
erubis (2.6.6)
|
35
|
+
abstract (>= 1.0.0)
|
36
|
+
i18n (0.5.0)
|
37
|
+
mail (2.2.15)
|
38
|
+
activesupport (>= 2.3.6)
|
39
|
+
i18n (>= 0.4.0)
|
40
|
+
mime-types (~> 1.16)
|
41
|
+
treetop (~> 1.4.8)
|
42
|
+
mime-types (1.16)
|
43
|
+
polyglot (0.3.1)
|
44
|
+
rack (1.2.2)
|
45
|
+
rack-mount (0.6.14)
|
46
|
+
rack (>= 1.0.0)
|
47
|
+
rack-test (0.5.7)
|
48
|
+
rack (>= 1.0)
|
49
|
+
rails (3.0.3)
|
50
|
+
actionmailer (= 3.0.3)
|
51
|
+
actionpack (= 3.0.3)
|
52
|
+
activerecord (= 3.0.3)
|
53
|
+
activeresource (= 3.0.3)
|
54
|
+
activesupport (= 3.0.3)
|
55
|
+
bundler (~> 1.0)
|
56
|
+
railties (= 3.0.3)
|
57
|
+
railties (3.0.3)
|
58
|
+
actionpack (= 3.0.3)
|
59
|
+
activesupport (= 3.0.3)
|
60
|
+
rake (>= 0.8.7)
|
61
|
+
thor (~> 0.14.4)
|
62
|
+
rake (0.8.7)
|
63
|
+
rspec (2.1.0)
|
64
|
+
rspec-core (~> 2.1.0)
|
65
|
+
rspec-expectations (~> 2.1.0)
|
66
|
+
rspec-mocks (~> 2.1.0)
|
67
|
+
rspec-core (2.1.0)
|
68
|
+
rspec-expectations (2.1.0)
|
69
|
+
diff-lcs (~> 1.1.2)
|
70
|
+
rspec-mocks (2.1.0)
|
71
|
+
rspec-rails (2.1.0)
|
72
|
+
rspec (~> 2.1.0)
|
73
|
+
thor (0.14.6)
|
74
|
+
treetop (1.4.9)
|
75
|
+
polyglot (>= 0.3.1)
|
76
|
+
tzinfo (0.3.25)
|
77
|
+
|
78
|
+
PLATFORMS
|
79
|
+
ruby
|
80
|
+
|
81
|
+
DEPENDENCIES
|
82
|
+
rails (= 3.0.3)
|
83
|
+
rspec-rails (~> 2.1.0)
|
data/README
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
== Basic Contact Form
|
2
|
+
|
3
|
+
Routes to /contact, sends an email, etc. etc. etc If your name is not Jason Younker, then this probably is not
|
4
|
+
something you are interested in
|
5
|
+
|
6
|
+
== My First Engine
|
7
|
+
|
8
|
+
Used the following resources to figure this out:
|
9
|
+
1. http://olympiad.posterous.com/how-to-building-a-rails-3-engine-and-set-up-t
|
10
|
+
2. http://www.themodestrubyist.com/2010/03/05/rails-3-plugins---part-2---writing-an-engine/
|
11
|
+
3. http://stackoverflow.com/questions/5445350/rails3-engine-controller-scoped-inside-engine-module-returning-load-error-by-c
|
data/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
3
|
+
|
4
|
+
require File.expand_path('../config/application', __FILE__)
|
5
|
+
require 'rake'
|
6
|
+
|
7
|
+
Contact::Application.load_tasks
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Until this issue is solved, I can't place it inside Contact:
|
2
|
+
# http://stackoverflow.com/questions/5445350/rails3-engine-controller-scoped-inside-engine-module-returning-load-error-by-c
|
3
|
+
# module Contact
|
4
|
+
class ContactsController < ApplicationController
|
5
|
+
|
6
|
+
# This must be included in your engine controllers. Unloadable marks your class for reloading inbetween requests.
|
7
|
+
# More about unloadable:
|
8
|
+
# http://apidock.com/rails/ActiveSupport/Dependencies/Loadable/unloadable
|
9
|
+
# http://strd6.com/2009/04/cant-dup-nilclass-maybe-try-unloadable/
|
10
|
+
unloadable
|
11
|
+
|
12
|
+
def new
|
13
|
+
@contact_form = Contact::Form.new
|
14
|
+
end
|
15
|
+
|
16
|
+
def send_email
|
17
|
+
@contact_form = Contact::Form.new(params[:form])
|
18
|
+
|
19
|
+
if @contact_form.valid?
|
20
|
+
Contact::Mailer.contact_us(@contact_form).deliver
|
21
|
+
redirect_to :back, :notice => 'Thank you! Your email has been sent.'
|
22
|
+
else
|
23
|
+
render :new
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
# end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
class Mailer < ActionMailer::Base
|
2
|
+
default :to => CONTACT['default_recipients']
|
3
|
+
|
4
|
+
# We have a contact form. That form is filled out by the customer. When they click 'send', this email is sent.
|
5
|
+
# It is how our customers contact_us()
|
6
|
+
def contact_us(form)
|
7
|
+
@form = form
|
8
|
+
mail :from => form.from,
|
9
|
+
:subject => "Customer Contact: #{form.subject}"
|
10
|
+
end
|
11
|
+
end
|
data/app/models/form.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# Models Without the Database: http://railsbest.com/levels/2
|
2
|
+
class Form
|
3
|
+
include ActiveModel::Validations
|
4
|
+
include ActiveModel::Conversion # form_for helper needs to know if we are POSTing (create) or PUTing (update)
|
5
|
+
|
6
|
+
attr_accessor :sender_name, :sender_email, :subject, :body
|
7
|
+
|
8
|
+
validates :subject, :body, :presence => true
|
9
|
+
|
10
|
+
# So we can batch update to instatiate the contact form, i.e. Contact.new(params[:contact_form])
|
11
|
+
def initialize(attributes = {})
|
12
|
+
attributes.each do |name, value|
|
13
|
+
send("#{name}=", value)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def from
|
18
|
+
case
|
19
|
+
when self.sender_name.present? && self.sender_email.present?
|
20
|
+
"#{self.sender_name} <#{self.sender_email}>"
|
21
|
+
when self.sender_name.present?
|
22
|
+
self.sender_name
|
23
|
+
when self.sender_email.present?
|
24
|
+
self.sender_email
|
25
|
+
else
|
26
|
+
"Annonymous User <#{CONTACT['default_recipients']}>"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def persisted?
|
31
|
+
false
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
@@ -0,0 +1,24 @@
|
|
1
|
+
%h1 Contact Us
|
2
|
+
|
3
|
+
= form_for @contact_form, :url => send_email_path do |f|
|
4
|
+
= render :partial => 'shared/user_notice', :locals => {:model_obj => @contact_form}
|
5
|
+
|
6
|
+
%div.formC_700
|
7
|
+
.field
|
8
|
+
= f.label :sender_name, 'Name'
|
9
|
+
= f.text_field :sender_name
|
10
|
+
|
11
|
+
.field
|
12
|
+
= f.label :sender_email, 'Email'
|
13
|
+
= f.text_field :sender_email
|
14
|
+
|
15
|
+
.field
|
16
|
+
= f.label :subject, 'Subject'
|
17
|
+
= f.text_field :subject
|
18
|
+
|
19
|
+
.field
|
20
|
+
= f.label :body, 'Body'
|
21
|
+
= f.text_area :body
|
22
|
+
|
23
|
+
.actions.clearfix
|
24
|
+
= f.submit 'Save Product Information', :class => :button
|
@@ -0,0 +1 @@
|
|
1
|
+
= @form.body
|
@@ -0,0 +1 @@
|
|
1
|
+
= @form.body
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require 'rails/all'
|
4
|
+
|
5
|
+
# If you have a Gemfile, require the gems listed there, including any gems
|
6
|
+
# you've limited to :test, :development, or :production.
|
7
|
+
Bundler.require(:default, Rails.env) if defined?(Bundler)
|
8
|
+
|
9
|
+
module Contact
|
10
|
+
class Application < Rails::Application
|
11
|
+
# Settings in config/environments/* take precedence over those specified here.
|
12
|
+
# Application configuration should go into files in config/initializers
|
13
|
+
# -- all .rb files in that directory are automatically loaded.
|
14
|
+
|
15
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
16
|
+
config.autoload_paths += %W(#{config.root}/lib/contact)
|
17
|
+
|
18
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
19
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
20
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
21
|
+
|
22
|
+
# Activate observers that should always be running.
|
23
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
24
|
+
|
25
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
26
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
27
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
28
|
+
|
29
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
30
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
31
|
+
# config.i18n.default_locale = :de
|
32
|
+
|
33
|
+
# JavaScript files you want as :defaults (application.js is always included).
|
34
|
+
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
|
35
|
+
|
36
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
37
|
+
config.encoding = "utf-8"
|
38
|
+
|
39
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
40
|
+
config.filter_parameters += [:password]
|
41
|
+
end
|
42
|
+
end
|
data/config/boot.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
# Set up gems listed in the Gemfile.
|
4
|
+
gemfile = File.expand_path('../../Gemfile', __FILE__)
|
5
|
+
begin
|
6
|
+
ENV['BUNDLE_GEMFILE'] = gemfile
|
7
|
+
require 'bundler'
|
8
|
+
Bundler.setup
|
9
|
+
rescue Bundler::GemNotFound => e
|
10
|
+
STDERR.puts e.message
|
11
|
+
STDERR.puts "Try running `bundle install`."
|
12
|
+
exit!
|
13
|
+
end if File.exist?(gemfile)
|
data/config/contact.yml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
development:
|
2
|
+
host: localhost:3000
|
3
|
+
default_recipients: 'contact_engine@28dev.com'
|
4
|
+
smtp:
|
5
|
+
address: 'smtp.webfaction.com'
|
6
|
+
port: '25'
|
7
|
+
domain: 'webfaction.com'
|
8
|
+
authentication: 'login'
|
9
|
+
username: 'younker_test'
|
10
|
+
password: 'T3stpwd'
|
11
|
+
interceptor:
|
12
|
+
intercept: true
|
13
|
+
intercept_recipient: 'intercepted@28dev.com'
|
14
|
+
|
data/config/database.yml
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3-ruby (not necessary on OS X Leopard)
|
3
|
+
development:
|
4
|
+
adapter: sqlite3
|
5
|
+
database: db/development.sqlite3
|
6
|
+
pool: 5
|
7
|
+
timeout: 5000
|
8
|
+
|
9
|
+
# Warning: The database defined as "test" will be erased and
|
10
|
+
# re-generated from your development database when you run "rake".
|
11
|
+
# Do not set this db to the same as development or production.
|
12
|
+
test:
|
13
|
+
adapter: sqlite3
|
14
|
+
database: db/test.sqlite3
|
15
|
+
pool: 5
|
16
|
+
timeout: 5000
|
17
|
+
|
18
|
+
production:
|
19
|
+
adapter: sqlite3
|
20
|
+
database: db/production.sqlite3
|
21
|
+
pool: 5
|
22
|
+
timeout: 5000
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Contact::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the webserver when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_view.debug_rjs = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Don't care if the mailer can't send
|
18
|
+
config.action_mailer.raise_delivery_errors = false
|
19
|
+
|
20
|
+
# Print deprecation notices to the Rails logger
|
21
|
+
config.active_support.deprecation = :log
|
22
|
+
|
23
|
+
# Only use best-standards-support built into browsers
|
24
|
+
config.action_dispatch.best_standards_support = :builtin
|
25
|
+
end
|
26
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
Contact::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
5
|
+
# Code is not reloaded between requests
|
6
|
+
config.cache_classes = true
|
7
|
+
|
8
|
+
# Full error reports are disabled and caching is turned on
|
9
|
+
config.consider_all_requests_local = false
|
10
|
+
config.action_controller.perform_caching = true
|
11
|
+
|
12
|
+
# Specifies the header that your server uses for sending files
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
14
|
+
|
15
|
+
# For nginx:
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
17
|
+
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
19
|
+
# just comment this out and Rails will serve the files
|
20
|
+
|
21
|
+
# See everything in the log (default is :info)
|
22
|
+
# config.log_level = :debug
|
23
|
+
|
24
|
+
# Use a different logger for distributed setups
|
25
|
+
# config.logger = SyslogLogger.new
|
26
|
+
|
27
|
+
# Use a different cache store in production
|
28
|
+
# config.cache_store = :mem_cache_store
|
29
|
+
|
30
|
+
# Disable Rails's static asset server
|
31
|
+
# In production, Apache or nginx will already do this
|
32
|
+
config.serve_static_assets = false
|
33
|
+
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
36
|
+
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
39
|
+
|
40
|
+
# Enable threaded mode
|
41
|
+
# config.threadsafe!
|
42
|
+
|
43
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
44
|
+
# the I18n.default_locale when a translation can not be found)
|
45
|
+
config.i18n.fallbacks = true
|
46
|
+
|
47
|
+
# Send deprecation notices to registered listeners
|
48
|
+
config.active_support.deprecation = :notify
|
49
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Contact::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Log error messages when you accidentally call methods on nil.
|
11
|
+
config.whiny_nils = true
|
12
|
+
|
13
|
+
# Show full error reports and disable caching
|
14
|
+
config.consider_all_requests_local = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Raise exceptions instead of rendering exception templates
|
18
|
+
config.action_dispatch.show_exceptions = false
|
19
|
+
|
20
|
+
# Disable request forgery protection in test environment
|
21
|
+
config.action_controller.allow_forgery_protection = false
|
22
|
+
|
23
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
24
|
+
# The :test delivery method accumulates sent emails in the
|
25
|
+
# ActionMailer::Base.deliveries array.
|
26
|
+
config.action_mailer.delivery_method = :test
|
27
|
+
|
28
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
29
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
30
|
+
# like if you have constraints or database-specific column types
|
31
|
+
# config.active_record.schema_format = :sql
|
32
|
+
|
33
|
+
# Print deprecation notices to the stderr
|
34
|
+
config.active_support.deprecation = :stderr
|
35
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
env = Rails.env.present? ? Rails.env.to_s : 'test'
|
3
|
+
CONTACT = YAML.load(File.read(File.expand_path('../../contact.yml', __FILE__)))[env]
|
4
|
+
|
5
|
+
ActionMailer::Base.smtp_settings = {
|
6
|
+
:address => CONTACT['smtp']['address'],
|
7
|
+
:authentication => CONTACT['smtp']['authentication'].intern,
|
8
|
+
:domain => CONTACT['smtp']['domain'],
|
9
|
+
:port => CONTACT['smtp']['port'],
|
10
|
+
:user_name => CONTACT['smtp']['username'],
|
11
|
+
:password => CONTACT['smtp']['password']
|
12
|
+
}
|
13
|
+
|
14
|
+
ActionMailer::Base.charset = "utf-8"
|
15
|
+
|
16
|
+
# For named routes, we need to specify the host b/c mailers are decoupled from current requests
|
17
|
+
ActionMailer::Base.default_url_options[:host] = CONTACT['host'] if CONTACT['host'].present?
|
18
|
+
|
19
|
+
# Do we want to prevent any email from being sent to the original recipient?
|
20
|
+
require 'mail_interceptor'
|
21
|
+
ActionMailer::Base.register_interceptor(MailInterceptor) if CONTACT['interceptor']['intercept']
|
data/config/routes.rb
ADDED
data/config.ru
ADDED
data/contact.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "contact/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "contact"
|
7
|
+
s.version = Contact::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Jason Younker"]
|
10
|
+
s.email = ["jason@28dev.com"]
|
11
|
+
s.homepage = "http://www.28dev.com"
|
12
|
+
s.summary = %q{Simple contact engine so I can stop re-creating the same thing}
|
13
|
+
s.description = %q{Tableless contact form model, routes, contact form and mailer}
|
14
|
+
|
15
|
+
s.rubyforge_project = "contact"
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
|
+
s.require_paths = ["lib"]
|
21
|
+
|
22
|
+
s.add_development_dependency "rspec"
|
23
|
+
s.add_dependency "rails"
|
24
|
+
end
|
data/db/seeds.rb
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
|
7
|
+
# Mayor.create(:name => 'Daley', :city => cities.first)
|
data/doc/README_FOR_APP
ADDED
data/lib/contact.rb
ADDED
data/lib/tasks/.gitkeep
ADDED
File without changes
|
data/public/404.html
ADDED
@@ -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>
|
data/public/422.html
ADDED
@@ -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>
|