Skip to content

Commit e5196bc

Browse files
committed
Merge pull request #187 from waynn/patch-2
don't need parentheses in if check
2 parents 805acf7 + 040dda4 commit e5196bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/generators/annotate/templates/auto_annotate_models.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NOTE: only doing this in development as some production environments (Heroku)
22
# NOTE: are sensitive to local FS writes, and besides -- it's just not proper
33
# NOTE: to have a dev-mode tool do its thing in production.
4-
if(Rails.env.development?)
4+
if Rails.env.development?
55
task :set_annotation_options do
66
# You can override any of these by setting an environment variable of the
77
# same name.

0 commit comments

Comments
 (0)