aboutsummaryrefslogtreecommitdiff
path: root/foreman_image_upload.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'foreman_image_upload.gemspec')
-rw-r--r--foreman_image_upload.gemspec21
1 files changed, 21 insertions, 0 deletions
diff --git a/foreman_image_upload.gemspec b/foreman_image_upload.gemspec
new file mode 100644
index 0000000..54ce243
--- /dev/null
+++ b/foreman_image_upload.gemspec
@@ -0,0 +1,21 @@
+# coding: utf-8
+require File.expand_path('../lib/foreman_image_upload/version', __FILE__)
+require 'date'
+
+Gem::Specification.new do |s|
+ s.name = 'foreman_image_upload'
+ s.version = ForemanImageUpload::VERSION
+ s.date = Date.today.to_s
+ s.authors = ['Guido Günther']
+ s.email = ['agx@sigxcpu.org']
+ s.summary = 'Upload virtual machine images to the Foreman.'
+ # also update locale/gemspec.rb
+ s.description = 'Upload virtual machine images to the Foreman.'
+
+ s.files = Dir['{app,config,db,lib,locale}/**/*'] + ['LICENSE', 'Rakefile', 'README.md']
+ s.test_files = Dir['test/**/*']
+
+ s.add_dependency 'deface'
+ s.add_development_dependency 'rubocop'
+ s.add_development_dependency 'rdoc'
+end