aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2013-10-16 11:43:13 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2013-10-16 11:43:13 -0700
commit2549f6d8ee104d1f83f573f5057c5f5e7c699608 (patch)
treefe7955cb4cf106458e6ce45c15b18c65bf4246bb /activesupport
parent23f35b2fd87b586278b167bb3f614df00811b104 (diff)
parentf2ca5aa5c2e9fed43ab11937906d98bd436ab820 (diff)
downloadrails-2549f6d8ee104d1f83f573f5057c5f5e7c699608.tar.gz
rails-2549f6d8ee104d1f83f573f5057c5f5e7c699608.tar.bz2
rails-2549f6d8ee104d1f83f573f5057c5f5e7c699608.zip
Merge branch 'master' into joindep
* master: Rephrase ActiveRecord transaction rollback warning Fix code blocks identation on AR and AS CHANGELOGs Removing unused fake models from actionpack tests
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index f1dd7c312d..246d94882b 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -22,14 +22,14 @@
You can do this:
- class JokeSubscriber < ActiveSupport::Subscriber
- # This is much easier to read!
- attach_to "active_record"
+ class JokeSubscriber < ActiveSupport::Subscriber
+ # This is much easier to read!
+ attach_to "active_record"
- def sql(event)
- puts "A rabbi and a priest walk into a bar..."
+ def sql(event)
+ puts "A rabbi and a priest walk into a bar..."
+ end
end
- end
This should make it easier to read and understand these subscribers.