-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 10 additions, 0 deletions.gitignore
- Gemfile 15 additions, 0 deletionsGemfile
- LICENSE.txt 21 additions, 0 deletionsLICENSE.txt
- README.md 28 additions, 0 deletionsREADME.md
- Rakefile 27 additions, 0 deletionsRakefile
- app/models/concerns/notification_extensions.rb 46 additions, 0 deletionsapp/models/concerns/notification_extensions.rb
- app/models/setting/notification_send.rb 0 additions, 0 deletionsapp/models/setting/notification_send.rb
- foreman_notification_send.gemspec 23 additions, 0 deletionsforeman_notification_send.gemspec
- lib/foreman_notification_send.rb 5 additions, 0 deletionslib/foreman_notification_send.rb
- lib/foreman_notification_send/engine.rb 32 additions, 0 deletionslib/foreman_notification_send/engine.rb
- lib/foreman_notification_send/version.rb 3 additions, 0 deletionslib/foreman_notification_send/version.rb
- lib/tasks/foreman_notification_send_tasks.rake 4 additions, 0 deletionslib/tasks/foreman_notification_send_tasks.rake
- test/foreman_notification_send_test.rb 7 additions, 0 deletionstest/foreman_notification_send_test.rb
- test/test_helper.rb 21 additions, 0 deletionstest/test_helper.rb
.gitignore
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
# Declare your gem's dependencies in foreman_notification_send.gemspec. | ||
# Bundler will treat runtime dependencies like base dependencies, and | ||
# development dependencies will be added by default to the :development group. | ||
gemspec | ||
# Declare any dependencies that are still in development here instead of in | ||
# your gemspec. These might include edge Rails or gems from your path or | ||
# Git. Remember to move these dependencies to your gemspec before releasing | ||
# your gem to rubygems.org. | ||
# To use a debugger | ||
# gem 'byebug', group: [:development, :test] |
LICENSE.txt
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
app/models/setting/notification_send.rb
0 → 100644
foreman_notification_send.gemspec
0 → 100644
require File.join File.expand_path('lib', __dir__), 'foreman_notification_send/version' | ||
# Describe your gem and declare its dependencies: | ||
Gem::Specification.new do |s| | ||
s.name = 'foreman_notification_send' | ||
s.version = ForemanNotificationSend::VERSION | ||
s.authors = ['Alexander Olofsson'] | ||
s.email = ['alexander.olofsson@liu.se'] | ||
# s.homepage = 'TODO' | ||
s.summary = 'summary' | ||
# s.description = 'TODO: Description of ForemanNotificationSend.' | ||
s.license = 'MIT' | ||
s.files = `git ls-files -z`.split("\x0").reject do |f| | ||
f.match(%r{^(test|spec|features)/}) | ||
end | ||
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
s.require_paths = ['lib'] | ||
s.add_development_dependency 'bundler', '~> 1.16' | ||
s.add_development_dependency 'minitest', '~> 5.0' | ||
s.add_development_dependency 'rake', '~> 10.0' | ||
end |
lib/foreman_notification_send.rb
0 → 100644
lib/foreman_notification_send/engine.rb
0 → 100644
lib/foreman_notification_send/version.rb
0 → 100644
test/foreman_notification_send_test.rb
0 → 100644
test/test_helper.rb
0 → 100644
Please register or sign in to comment