Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI #37

Merged
merged 2 commits into from
Jun 17, 2016
Merged

CI #37

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: ruby
env:
- GEM=api
- GEM=core
- GEM=frontend
before_install:
- cd $GEM; export BUNDLE_GEMFILE="`pwd`/Gemfile"
script:
- bundle install --quiet
- bundle exec rake test_app
- bundle exec rake spec
rvm:
- 2.1
- 2.2
- 2.3.1
addons:
code_climate:
repo_token: 7b6a43d5fa6ad571f5674176b0b85a79f62bfb7a908eb8bdd52941566706770e
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
</p>

[![Gem Version](https://badge.fury.io/rb/mno-enterprise.svg)](https://rubygems.org/gems/mno-enterprise)
[![Build Status](https://travis-ci.org/maestrano/mno-enterprise.svg?branch=master)](https://travis-ci.org/maestrano/mno-enterprise)
[![Dependency Status](https://gemnasium.com/badges/github.com/maestrano/mno-enterprise.svg)](https://gemnasium.com/github.com/maestrano/mno-enterprise)
[![Code Climate](https://codeclimate.com/github/maestrano/mno-enterprise/badges/gpa.svg)](https://codeclimate.com/github/maestrano/mno-enterprise)
[![Test Coverage](https://codeclimate.com/github/maestrano/mno-enterprise/badges/coverage.svg)](https://codeclimate.com/github/maestrano/mno-enterprise/coverage)

The Maestrano Enterprise Engine can be included in a Rails project to bootstrap an instance of Maestrano Enterprise Express.

Expand Down
6 changes: 0 additions & 6 deletions core/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ gemspec
# 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.
group :test, :development do
# Email
gem 'mandrill-api', '~> 1.0.53'
gem 'sparkpost', '~> 0.1.4'
end


# To use a debugger
# gem 'byebug', group: [:development, :test]
4 changes: 4 additions & 0 deletions core/mno-enterprise-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,8 @@ Gem::Specification.new do |s|
s.add_dependency 'figaro'
# Config files per environment
s.add_dependency 'config', '~> 1.0.0'

# Emailing
# s.add_development_dependency 'mandrill-api', '~> 1.0.53'
s.add_development_dependency 'sparkpost', '~> 0.1.4'
end