hermes 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +47 -0
- data/lib/hermes.rb +36 -0
- data/lib/hermes/hooks/attr_protected.rb +9 -0
- data/lib/hermes/notifiers/growl.rb +3 -0
- data/lib/hermes/railtie.rb +9 -0
- data/lib/hermes/version.rb +3 -0
- data/test/dummy/Rakefile +10 -0
- data/test/dummy/app/controllers/application_controller.rb +4 -0
- data/test/dummy/app/controllers/users_controller.rb +83 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/users_helper.rb +2 -0
- data/test/dummy/app/models/user.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/users/_form.html.erb +21 -0
- data/test/dummy/app/views/users/edit.html.erb +6 -0
- data/test/dummy/app/views/users/index.html.erb +23 -0
- data/test/dummy/app/views/users/new.html.erb +5 -0
- data/test/dummy/app/views/users/show.html.erb +10 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +49 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +22 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +19 -0
- data/test/dummy/config/environments/production.rb +46 -0
- data/test/dummy/config/environments/test.rb +32 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -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/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +60 -0
- data/test/dummy/db/migrate/20100423185611_create_users.rb +14 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +9 -0
- data/test/hermes_test.rb +18 -0
- data/test/support/integration_case.rb +5 -0
- data/test/test_helper.rb +22 -0
- metadata +119 -0
data/MIT-LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright 2010 PlataformaTec http://blog.plataformatec.com.br/
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
= Hermes
|
|
2
|
+
|
|
3
|
+
How many times have you forgotten adding a column to the attr_accessible list and spent ours debugging why your database was not being updated?
|
|
4
|
+
|
|
5
|
+
Hermes, the great messenger of the gods, is a tool that warn us about some common pitfalls (like the one above) while developing Rails applications.
|
|
6
|
+
|
|
7
|
+
== Notifiers
|
|
8
|
+
|
|
9
|
+
To help achieving this task, Hermes uses Growl in MacOSX. Right now it does not support other tools, but you are welcome to fork and add it!
|
|
10
|
+
|
|
11
|
+
== Hooks
|
|
12
|
+
|
|
13
|
+
So far, Hermes only notifies when assigning a protected attribute. Are you tired in falling in other pitfalls? Fork it, add a warning and never again!
|
|
14
|
+
|
|
15
|
+
== Installation
|
|
16
|
+
|
|
17
|
+
To use Hermes in both Rails 2.3 and Rails 3, you just need to install it as a gem:
|
|
18
|
+
|
|
19
|
+
gem install hermes
|
|
20
|
+
|
|
21
|
+
=== Rails 3
|
|
22
|
+
|
|
23
|
+
If you are using Rails 3, you just need to add it to your Gemfile:
|
|
24
|
+
|
|
25
|
+
group :development do
|
|
26
|
+
gem "hermes"
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
=== Rails 2.3
|
|
30
|
+
|
|
31
|
+
If you are using Rails 2.3, you need to add it to your config/environments/development.rb:
|
|
32
|
+
|
|
33
|
+
config.gem "hermes"
|
|
34
|
+
|
|
35
|
+
And then at the bottom of "config/environment.rb" or in any initializer, you need to set it up:
|
|
36
|
+
|
|
37
|
+
Hermes.setup!
|
|
38
|
+
|
|
39
|
+
== Bugs and Features
|
|
40
|
+
|
|
41
|
+
If you discover any bugs or add any features, please let us know using GitHub's tracker.
|
|
42
|
+
|
|
43
|
+
http://github.com/plataformatec/hermes/issues
|
|
44
|
+
|
|
45
|
+
== License
|
|
46
|
+
|
|
47
|
+
MIT License. Copyright 2010 Plataforma Tecnologia. http://blog.plataformatec.com.br
|
data/lib/hermes.rb
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
require "hermes/railtie" if defined?(Rails::Railtie)
|
|
2
|
+
|
|
3
|
+
module Hermes
|
|
4
|
+
module Notifiers
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
mattr_reader :notifiers
|
|
8
|
+
@@notifiers = []
|
|
9
|
+
|
|
10
|
+
mattr_reader :hooks
|
|
11
|
+
@@hooks = [:attr_protected]
|
|
12
|
+
|
|
13
|
+
def self.notify(message)
|
|
14
|
+
notifiers.each { |notifier| notifier.call(message) }
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def self.setup!
|
|
18
|
+
setup_notifiers!
|
|
19
|
+
setup_hooks!
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
protected
|
|
23
|
+
|
|
24
|
+
def self.setup_hooks!
|
|
25
|
+
hooks.each { |hook| require "hermes/hooks/#{hook}" }
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def self.setup_notifiers!
|
|
29
|
+
case RUBY_PLATFORM
|
|
30
|
+
when /darwin/
|
|
31
|
+
require "hermes/notifiers/growl"
|
|
32
|
+
else
|
|
33
|
+
warn "Hermes only supports MacOSX using Growl. Want to support other OS? Fork it!"
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
require 'active_record/base'
|
|
2
|
+
|
|
3
|
+
class ActiveRecord::Base
|
|
4
|
+
def log_protected_attribute_removal_with_hermes(*attributes)
|
|
5
|
+
log_protected_attribute_removal_without_hermes(*attributes)
|
|
6
|
+
Hermes.notify "Can't mass-assign #{self.class.name} protected attributes: #{attributes.to_sentence}."
|
|
7
|
+
end
|
|
8
|
+
alias_method_chain :log_protected_attribute_removal, :hermes
|
|
9
|
+
end
|
data/test/dummy/Rakefile
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
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
|
+
|
|
6
|
+
require 'rake'
|
|
7
|
+
require 'rake/testtask'
|
|
8
|
+
require 'rake/rdoctask'
|
|
9
|
+
|
|
10
|
+
Rails::Application.load_tasks
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
class UsersController < ApplicationController
|
|
2
|
+
# GET /users
|
|
3
|
+
# GET /users.xml
|
|
4
|
+
def index
|
|
5
|
+
@users = User.all
|
|
6
|
+
|
|
7
|
+
respond_to do |format|
|
|
8
|
+
format.html # index.html.erb
|
|
9
|
+
format.xml { render :xml => @users }
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
# GET /users/1
|
|
14
|
+
# GET /users/1.xml
|
|
15
|
+
def show
|
|
16
|
+
@user = User.find(params[:id])
|
|
17
|
+
|
|
18
|
+
respond_to do |format|
|
|
19
|
+
format.html # show.html.erb
|
|
20
|
+
format.xml { render :xml => @user }
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
# GET /users/new
|
|
25
|
+
# GET /users/new.xml
|
|
26
|
+
def new
|
|
27
|
+
@user = User.new
|
|
28
|
+
|
|
29
|
+
respond_to do |format|
|
|
30
|
+
format.html # new.html.erb
|
|
31
|
+
format.xml { render :xml => @user }
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# GET /users/1/edit
|
|
36
|
+
def edit
|
|
37
|
+
@user = User.find(params[:id])
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# POST /users
|
|
41
|
+
# POST /users.xml
|
|
42
|
+
def create
|
|
43
|
+
@user = User.new(params[:user])
|
|
44
|
+
|
|
45
|
+
respond_to do |format|
|
|
46
|
+
if @user.save
|
|
47
|
+
format.html { redirect_to(@user, :notice => 'User was successfully created.') }
|
|
48
|
+
format.xml { render :xml => @user, :status => :created, :location => @user }
|
|
49
|
+
else
|
|
50
|
+
format.html { render :action => "new" }
|
|
51
|
+
format.xml { render :xml => @user.errors, :status => :unprocessable_entity }
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# PUT /users/1
|
|
57
|
+
# PUT /users/1.xml
|
|
58
|
+
def update
|
|
59
|
+
@user = User.find(params[:id])
|
|
60
|
+
|
|
61
|
+
respond_to do |format|
|
|
62
|
+
if @user.update_attributes(params[:user])
|
|
63
|
+
format.html { redirect_to(@user, :notice => 'User was successfully updated.') }
|
|
64
|
+
format.xml { head :ok }
|
|
65
|
+
else
|
|
66
|
+
format.html { render :action => "edit" }
|
|
67
|
+
format.xml { render :xml => @user.errors, :status => :unprocessable_entity }
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
# DELETE /users/1
|
|
73
|
+
# DELETE /users/1.xml
|
|
74
|
+
def destroy
|
|
75
|
+
@user = User.find(params[:id])
|
|
76
|
+
@user.destroy
|
|
77
|
+
|
|
78
|
+
respond_to do |format|
|
|
79
|
+
format.html { redirect_to(users_url) }
|
|
80
|
+
format.xml { head :ok }
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<%= form_for(@user) do |f| %>
|
|
2
|
+
<% if @user.errors.any? %>
|
|
3
|
+
<div id="error_explanation">
|
|
4
|
+
<h2><%= pluralize(@user.errors.count, "error") %> prohibited this user from being saved:</h2>
|
|
5
|
+
|
|
6
|
+
<ul>
|
|
7
|
+
<% @user.errors.full_messages.each do |msg| %>
|
|
8
|
+
<li><%= msg %></li>
|
|
9
|
+
<% end %>
|
|
10
|
+
</ul>
|
|
11
|
+
</div>
|
|
12
|
+
<% end %>
|
|
13
|
+
|
|
14
|
+
<div class="field">
|
|
15
|
+
<%= f.label :name %><br />
|
|
16
|
+
<%= f.text_field :name %>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="actions">
|
|
19
|
+
<%= f.submit %>
|
|
20
|
+
</div>
|
|
21
|
+
<% end %>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<h1>Listing users</h1>
|
|
2
|
+
|
|
3
|
+
<table>
|
|
4
|
+
<tr>
|
|
5
|
+
<th>Name</th>
|
|
6
|
+
<th></th>
|
|
7
|
+
<th></th>
|
|
8
|
+
<th></th>
|
|
9
|
+
</tr>
|
|
10
|
+
|
|
11
|
+
<% @users.each do |user| %>
|
|
12
|
+
<tr>
|
|
13
|
+
<td><%= user.name %></td>
|
|
14
|
+
<td><%= link_to 'Show', user %></td>
|
|
15
|
+
<td><%= link_to 'Edit', edit_user_path(user) %></td>
|
|
16
|
+
<td><%= link_to 'Destroy', user, :confirm => 'Are you sure?', :method => :delete %></td>
|
|
17
|
+
</tr>
|
|
18
|
+
<% end %>
|
|
19
|
+
</table>
|
|
20
|
+
|
|
21
|
+
<br />
|
|
22
|
+
|
|
23
|
+
<%= link_to 'New User', new_user_path %>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
|
2
|
+
|
|
3
|
+
require "active_model/railtie"
|
|
4
|
+
require "active_record/railtie"
|
|
5
|
+
require "action_controller/railtie"
|
|
6
|
+
require "action_view/railtie"
|
|
7
|
+
require "action_mailer/railtie"
|
|
8
|
+
|
|
9
|
+
Bundler.require
|
|
10
|
+
require "hermes"
|
|
11
|
+
|
|
12
|
+
module Dummy
|
|
13
|
+
class Application < Rails::Application
|
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
|
15
|
+
# Application configuration should go into files in config/initializers
|
|
16
|
+
# -- all .rb files in that directory are automatically loaded.
|
|
17
|
+
|
|
18
|
+
# Add additional load paths for your own custom dirs
|
|
19
|
+
# config.load_paths += %W( #{config.root}/extras )
|
|
20
|
+
|
|
21
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
|
22
|
+
# :all can be used as a placeholder for all plugins not explicitly named
|
|
23
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
24
|
+
|
|
25
|
+
# Activate observers that should always be running
|
|
26
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
|
27
|
+
|
|
28
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
29
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
30
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
|
31
|
+
|
|
32
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
33
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
34
|
+
# config.i18n.default_locale = :de
|
|
35
|
+
|
|
36
|
+
# Configure generators values. Many other options are available, be sure to check the documentation.
|
|
37
|
+
# config.generators do |g|
|
|
38
|
+
# g.orm :active_record
|
|
39
|
+
# g.template_engine :erb
|
|
40
|
+
# g.test_framework :test_unit, :fixture => true
|
|
41
|
+
# end
|
|
42
|
+
|
|
43
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
|
44
|
+
config.encoding = "utf-8"
|
|
45
|
+
|
|
46
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
|
47
|
+
config.filter_parameters += [:password]
|
|
48
|
+
end
|
|
49
|
+
end
|
|
@@ -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,19 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/environment.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
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/environment.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
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/environment.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
|
+
end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
|
5
|
+
|
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Add new inflection rules using the following format
|
|
4
|
+
# (all these examples are active by default):
|
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
|
8
|
+
# inflect.irregular 'person', 'people'
|
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
|
10
|
+
# end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
7
|
+
Rails.application.config.secret_token = '37fdf22ab8c7467a756de5cdba07a98966ccf72e93daaea5df843ce4fd58e4f5c95466e39bb98b3111f4c58f8672edbc82a30ac35a9eae72c39689ab2a6e71af'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
Rails.application.config.session_store :cookie_store, :key => '_dummy_session'
|
|
4
|
+
|
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
|
6
|
+
# which shouldn't be used to store highly confidential information
|
|
7
|
+
# (create the session table with "rake db:sessions:create")
|
|
8
|
+
# Rails.application.config.session_store :active_record_store
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
Dummy::Application.routes.draw do |map|
|
|
2
|
+
resources :users
|
|
3
|
+
|
|
4
|
+
# The priority is based upon order of creation:
|
|
5
|
+
# first created -> highest priority.
|
|
6
|
+
|
|
7
|
+
# Sample of regular route:
|
|
8
|
+
# match 'products/:id' => 'catalog#view'
|
|
9
|
+
# Keep in mind you can assign values other than :controller and :action
|
|
10
|
+
|
|
11
|
+
# Sample of named route:
|
|
12
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
|
13
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
|
14
|
+
|
|
15
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
|
16
|
+
# resources :products
|
|
17
|
+
|
|
18
|
+
# Sample resource route with options:
|
|
19
|
+
# resources :products do
|
|
20
|
+
# member do
|
|
21
|
+
# get :short
|
|
22
|
+
# post :toggle
|
|
23
|
+
# end
|
|
24
|
+
#
|
|
25
|
+
# collection do
|
|
26
|
+
# get :sold
|
|
27
|
+
# end
|
|
28
|
+
# end
|
|
29
|
+
|
|
30
|
+
# Sample resource route with sub-resources:
|
|
31
|
+
# resources :products do
|
|
32
|
+
# resources :comments, :sales
|
|
33
|
+
# resource :seller
|
|
34
|
+
# end
|
|
35
|
+
|
|
36
|
+
# Sample resource route with more complex sub-resources
|
|
37
|
+
# resources :products do
|
|
38
|
+
# resources :comments
|
|
39
|
+
# resources :sales do
|
|
40
|
+
# get :recent, :on => :collection
|
|
41
|
+
# end
|
|
42
|
+
# end
|
|
43
|
+
|
|
44
|
+
# Sample resource route within a namespace:
|
|
45
|
+
# namespace :admin do
|
|
46
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
|
47
|
+
# # (app/controllers/admin/products_controller.rb)
|
|
48
|
+
# resources :products
|
|
49
|
+
# end
|
|
50
|
+
|
|
51
|
+
# You can have the root of your site routed with "root"
|
|
52
|
+
# just remember to delete public/index.html.
|
|
53
|
+
# root :to => "welcome#index"
|
|
54
|
+
|
|
55
|
+
# See how all your routes lay out with "rake routes"
|
|
56
|
+
|
|
57
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
|
58
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
|
59
|
+
# match ':controller(/:action(/:id(.:format)))'
|
|
60
|
+
end
|
|
Binary file
|
|
@@ -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,26 @@
|
|
|
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
|
+
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
|
|
24
|
+
</div>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
ENV_PATH = File.expand_path('../../config/environment', __FILE__)
|
|
5
|
+
BOOT_PATH = File.expand_path('../../config/boot', __FILE__)
|
|
6
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
|
7
|
+
|
|
8
|
+
require BOOT_PATH
|
|
9
|
+
require 'rails/commands'
|
data/test/hermes_test.rb
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
require 'test_helper'
|
|
3
|
+
|
|
4
|
+
class HermesStackTest < ActiveSupport::IntegrationCase
|
|
5
|
+
setup do
|
|
6
|
+
@messages = []
|
|
7
|
+
Hermes.notifiers << lambda { |msg| @messages << msg }
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
teardown do
|
|
11
|
+
Hermes.notifiers.pop
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
test "notifies when assigning a protected attribute" do
|
|
15
|
+
User.create!(:id => 1, :name => "José Valim", :age => 23)
|
|
16
|
+
assert_equal "Can't mass-assign User protected attributes: id.", @messages.last
|
|
17
|
+
end
|
|
18
|
+
end
|
data/test/test_helper.rb
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Configure Rails Envinronment
|
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
|
3
|
+
|
|
4
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
|
5
|
+
require "rails/test_help"
|
|
6
|
+
|
|
7
|
+
ActionMailer::Base.delivery_method = :test
|
|
8
|
+
ActionMailer::Base.perform_deliveries = true
|
|
9
|
+
ActionMailer::Base.default_url_options[:host] = "test.com"
|
|
10
|
+
|
|
11
|
+
Rails.backtrace_cleaner.remove_silencers!
|
|
12
|
+
|
|
13
|
+
# Configure capybara for integration testing
|
|
14
|
+
require "capybara/rails"
|
|
15
|
+
Capybara.default_driver = :rack_test
|
|
16
|
+
Capybara.default_selector = :css
|
|
17
|
+
|
|
18
|
+
# Run any available migration
|
|
19
|
+
ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
|
|
20
|
+
|
|
21
|
+
# Load support files
|
|
22
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
metadata
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hermes
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 1
|
|
8
|
+
- 0
|
|
9
|
+
version: 0.1.0
|
|
10
|
+
platform: ruby
|
|
11
|
+
authors:
|
|
12
|
+
- "Jos\xC3\xA9 Valim"
|
|
13
|
+
autorequire:
|
|
14
|
+
bindir: bin
|
|
15
|
+
cert_chain: []
|
|
16
|
+
|
|
17
|
+
date: 2010-04-24 00:00:00 +02:00
|
|
18
|
+
default_executable:
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: growl
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
requirements:
|
|
25
|
+
- - ~>
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
segments:
|
|
28
|
+
- 1
|
|
29
|
+
- 0
|
|
30
|
+
- 0
|
|
31
|
+
version: 1.0.0
|
|
32
|
+
type: :runtime
|
|
33
|
+
version_requirements: *id001
|
|
34
|
+
description: Hermes, the great messenger of the gods, warn us about some common pitfalls while developing Rails applications.
|
|
35
|
+
email:
|
|
36
|
+
- developers@plataformatec.com.br
|
|
37
|
+
executables: []
|
|
38
|
+
|
|
39
|
+
extensions: []
|
|
40
|
+
|
|
41
|
+
extra_rdoc_files:
|
|
42
|
+
- README.rdoc
|
|
43
|
+
files:
|
|
44
|
+
- lib/hermes/hooks/attr_protected.rb
|
|
45
|
+
- lib/hermes/notifiers/growl.rb
|
|
46
|
+
- lib/hermes/railtie.rb
|
|
47
|
+
- lib/hermes/version.rb
|
|
48
|
+
- lib/hermes.rb
|
|
49
|
+
- README.rdoc
|
|
50
|
+
- MIT-LICENSE
|
|
51
|
+
has_rdoc: true
|
|
52
|
+
homepage: http://github.com/plataformatec/hermes
|
|
53
|
+
licenses: []
|
|
54
|
+
|
|
55
|
+
post_install_message:
|
|
56
|
+
rdoc_options:
|
|
57
|
+
- --main
|
|
58
|
+
- README.rdoc
|
|
59
|
+
require_paths:
|
|
60
|
+
- lib
|
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
|
+
requirements:
|
|
63
|
+
- - ">="
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
segments:
|
|
66
|
+
- 0
|
|
67
|
+
version: "0"
|
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
segments:
|
|
73
|
+
- 0
|
|
74
|
+
version: "0"
|
|
75
|
+
requirements: []
|
|
76
|
+
|
|
77
|
+
rubyforge_project: hermes
|
|
78
|
+
rubygems_version: 1.3.6
|
|
79
|
+
signing_key:
|
|
80
|
+
specification_version: 3
|
|
81
|
+
summary: Hermes, the great messenger of the gods, warn us about some common pitfalls while developing Rails applications.
|
|
82
|
+
test_files:
|
|
83
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
84
|
+
- test/dummy/app/controllers/users_controller.rb
|
|
85
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
86
|
+
- test/dummy/app/helpers/users_helper.rb
|
|
87
|
+
- test/dummy/app/models/user.rb
|
|
88
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
89
|
+
- test/dummy/app/views/users/_form.html.erb
|
|
90
|
+
- test/dummy/app/views/users/edit.html.erb
|
|
91
|
+
- test/dummy/app/views/users/index.html.erb
|
|
92
|
+
- test/dummy/app/views/users/new.html.erb
|
|
93
|
+
- test/dummy/app/views/users/show.html.erb
|
|
94
|
+
- test/dummy/config/application.rb
|
|
95
|
+
- test/dummy/config/boot.rb
|
|
96
|
+
- test/dummy/config/database.yml
|
|
97
|
+
- test/dummy/config/environment.rb
|
|
98
|
+
- test/dummy/config/environments/development.rb
|
|
99
|
+
- test/dummy/config/environments/production.rb
|
|
100
|
+
- test/dummy/config/environments/test.rb
|
|
101
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
102
|
+
- test/dummy/config/initializers/inflections.rb
|
|
103
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
104
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
105
|
+
- test/dummy/config/initializers/session_store.rb
|
|
106
|
+
- test/dummy/config/locales/en.yml
|
|
107
|
+
- test/dummy/config/routes.rb
|
|
108
|
+
- test/dummy/config.ru
|
|
109
|
+
- test/dummy/db/migrate/20100423185611_create_users.rb
|
|
110
|
+
- test/dummy/db/test.sqlite3
|
|
111
|
+
- test/dummy/public/404.html
|
|
112
|
+
- test/dummy/public/422.html
|
|
113
|
+
- test/dummy/public/500.html
|
|
114
|
+
- test/dummy/public/favicon.ico
|
|
115
|
+
- test/dummy/Rakefile
|
|
116
|
+
- test/dummy/script/rails
|
|
117
|
+
- test/hermes_test.rb
|
|
118
|
+
- test/support/integration_case.rb
|
|
119
|
+
- test/test_helper.rb
|