forked from nedap/mordor-auditing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauditing.gemspec
23 lines (18 loc) · 1.08 KB
/
auditing.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = "mordor-auditing"
# Do not set the version and date field manually, this is done by the release script
s.version = "0.0.18"
s.date = "2012-06-21"
s.summary = "mordor-auditing"
s.description = <<-eos
Auditing classes based on the Mordor gem, used to audit requests and modifications on objects
eos
s.add_development_dependency('rake')
s.add_development_dependency('rspec', '~> 2.0')
s.authors = ['Jan-Willem Koelewijn', 'Dirkjan Bussink']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'http://www.nedap.com'
# The files and test_files directives are set automatically by the release script.
# Do not change them by hand, but make sure to add the files to the git repository.
s.files = %w(.gitignore .travis.yml Gemfile Gemfile.lock Rakefile auditing.gemspec lib/auditing.rb lib/auditing/modification.rb lib/auditing/request.rb lib/auditing/version.rb spec/auditing/modification_spec.rb spec/auditing/request_spec.rb spec/spec.opts spec/spec_helper.rb tasks/github-gem.rake)
end