Skip to content

Commit

Permalink
Add external services
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryguy committed Dec 15, 2016
1 parent b742664 commit 86153ab
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 12 deletions.
13 changes: 10 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Gemfile.lock

spec/manageiq
/.bundle/
/.yardoc
/Gemfile.lock
/_yardoc/
/coverage/
/doc/
/pkg/
/spec/manageiq/
/spec/reports/
/tmp/
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@ before_install:
- source ${TRAVIS_BUILD_DIR}/tools/ci/before_install.sh
before_script: bundle exec rake spec:setup
after_script: bundle exec codeclimate-test-reporter
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/46abb9c5f1f009b6a699
on_success: change
on_failure: always
on_start: never
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ else
exit 1
end

gem "codeclimate-test-reporter", :require => false
group :test do
gem "codeclimate-test-reporter", :require => false
gem "simplecov", :require => false
end
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# ManageIQ Content

This repo contains the default content for ManageIQ.
Starting with the ManageIQ automate domain, content will be extracted from the ManageIQ/manageiq repo.
Dialogs, reports, etc. extraction should follow soon.
This should also act as a content template for provider plugins.
[![Gem Version](https://badge.fury.io/rb/manageiq-content.svg)](http://badge.fury.io/rb/manageiq-content)
[![Build Status](https://travis-ci.org/ManageIQ/manageiq-content.svg)](https://travis-ci.org/ManageIQ/manageiq-content)
[![Code Climate](https://codeclimate.com/github/ManageIQ/manageiq-content.svg)](https://codeclimate.com/github/ManageIQ/manageiq-content)
[![Test Coverage](https://codeclimate.com/github/ManageIQ/manageiq-content/badges/coverage.svg)](https://codeclimate.com/github/ManageIQ/manageiq-content/coverage)
[![Dependency Status](https://gemnasium.com/ManageIQ/manageiq-content.svg)](https://gemnasium.com/ManageIQ/manageiq-content)

[![Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ManageIQ/manageiq/automate?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Default ManageIQ content.

At present, this repo contains only the ManageIQ automate domain. In the future,
more content will be extracted from the ManageIQ/manageiq repo such as dialogs,
reports, and policies.

## Contributing

Expand Down
6 changes: 2 additions & 4 deletions manageiq-content.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ Gem::Specification.new do |s|
s.version = ManageIQ::Content::VERSION
s.authors = ["ManageIQ Developers"]
s.homepage = "https://github.com/ManageIQ/manageiq-content"
s.summary = "Default ManageIQ user content including the automate domain, dialogs, etc."
s.description = "Default ManageIQ user content including the automate domain, dialogs, etc."
s.summary = "Default ManageIQ content"
s.description = "Default ManageIQ content"
s.licenses = ["Apache-2.0"]

s.files = Dir["{content,lib}/**/*", "LICENSE.txt", "Rakefile", "README.md"]

s.add_runtime_dependency "rails", "~>5.0"
end
3 changes: 3 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
require 'simplecov'
SimpleCov.start

require 'manageiq-content'

# Reset only the ManageIQ automate domain when testing.
Expand Down

0 comments on commit 86153ab

Please sign in to comment.