-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 8 additions, 0 deletions.gitignore
- .travis.yml 5 additions, 0 deletions.travis.yml
- Gemfile 6 additions, 0 deletionsGemfile
- LICENSE 0 additions, 0 deletionsLICENSE
- README.md 11 additions, 0 deletionsREADME.md
- Rakefile 10 additions, 0 deletionsRakefile
- app/lib/actions/foreman_template_tasks/template_action.rb 58 additions, 0 deletionsapp/lib/actions/foreman_template_tasks/template_action.rb
- app/lib/actions/foreman_template_tasks/template_export_action.rb 21 additions, 0 deletions.../actions/foreman_template_tasks/template_export_action.rb
- app/lib/actions/foreman_template_tasks/template_import_action.rb 21 additions, 0 deletions.../actions/foreman_template_tasks/template_import_action.rb
- foreman_template_tasks.gemspec 19 additions, 0 deletionsforeman_template_tasks.gemspec
- lib/foreman_template_tasks.rb 6 additions, 0 deletionslib/foreman_template_tasks.rb
- lib/foreman_template_tasks/engine.rb 35 additions, 0 deletionslib/foreman_template_tasks/engine.rb
- lib/foreman_template_tasks/version.rb 5 additions, 0 deletionslib/foreman_template_tasks/version.rb
.gitignore
0 → 100644
.travis.yml
0 → 100644
Gemfile
0 → 100644
source "https://rubygems.org" | ||
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } | ||
# Specify your gem's dependencies in foreman_template_task.gemspec | ||
gemspec |
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
Rakefile
0 → 100644
foreman_template_tasks.gemspec
0 → 100644
# frozen_string_literal: true | ||
require File.expand_path('lib/foreman_template_tasks/version', __dir__) | ||
Gem::Specification.new do |spec| | ||
spec.name = 'foreman_template_tasks' | ||
spec.version = ForemanTemplateTasks::VERSION | ||
spec.authors = ['Alexander Olofsson'] | ||
spec.email = ['alexander.olofsson@liu.se'] | ||
spec.summary = 'Foreman plug-in to automatically sync templates' | ||
spec.homepage = 'https://github.com/ananace/foreman_template_tasks' | ||
spec.license = 'GPL-3.0' | ||
spec.files = Dir['{app,lib}/**/*'] + %w[LICENSE Rakefile README.md] | ||
spec.add_runtime_dependency 'foreman-tasks' | ||
spec.add_runtime_dependency 'foreman_templates' | ||
end |
lib/foreman_template_tasks.rb
0 → 100644
lib/foreman_template_tasks/engine.rb
0 → 100644
lib/foreman_template_tasks/version.rb
0 → 100644
Please register or sign in to comment