-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathadvanced_errors.gemspec
More file actions
21 lines (19 loc) · 904 Bytes
/
advanced_errors.gemspec
File metadata and controls
21 lines (19 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
spec = Gem::Specification.new do |s|
s.name = 'advanced_errors'
s.version = '1.0.080810'
s.author = 'Mark Catley'
s.email = 'mark@nexx.co.nz'
s.homepage = 'http://github.com/markcatley/advanced_errors'
s.summary = "[Rails] Extentions to ActiveRecord's error handling features which I find useful."
s.description = "Disabling the rendering of the attribute name for errors by the error_messages_for helper.\n" +
'Simply place a caret as the first character in the message.'
s.files = %w( README
MIT-LICENSE
Rakefile
rails/init.rb
lib/advanced_errors.rb
lib/advanced_errors/full_messages.rb
test/test_helper.rb
test/full_message_test.rb)
s.add_dependency 'activerecord'
end