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

update to rails 6.1.4 #6

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 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
39 changes: 39 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Ruby CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#

app-image: &app-image circleci/ruby:2.5.3-node
app-env: &app-env
BUNDLE_PATH: vendor/bundle

version: 2
jobs:
build:
docker:
- image: *app-image
environment:
<<: *app-env

steps:
- checkout

- run:
name: Make sure Ruby versions match
command: test "$(ruby -v | sed 's/^ruby \([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/\1/')" = "$(cat .ruby-version)"

- run:
name: Which bundler?
command: bundle -v

- run:
name: Install latest gem dependencies
command: bundle update

- run:
name: Run rubocop
command: bundle exec rake install

- run:
name: Run Specs
command: bundle exec rake spec
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.0
2.5.3
16 changes: 8 additions & 8 deletions bundle_notification.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ require 'bundle_notification/version'
Gem::Specification.new do |spec|
spec.name = 'bundle_notification'
spec.version = BundleNotification::VERSION
spec.authors = ['ad2games GmbH']
spec.email = ['developers@ad2games.com']
spec.authors = ['combostrike GmbH']
spec.email = ['developers@combostrike.com']

spec.summary = 'Bundle ActionMailer notifications'
spec.description = 'Bundle many ActionMailer messages for the same recipient into a single email'
spec.homepage = 'http://ad2games.com'
spec.homepage = 'http://combostrike.com'
spec.license = 'MIT'

if spec.respond_to?(:metadata)
Expand All @@ -28,15 +28,15 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_development_dependency 'actionmailer', '>= 4.0', '< 5.3'
spec.add_development_dependency 'bundler', '~> 1.14'
spec.add_development_dependency 'actionmailer', '~> 6.1.4'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'factory_girl'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'sqlite3'
spec.add_development_dependency 'sqlite3', '~> 1.4'

spec.add_dependency 'activerecord', '>= 4.0', '< 5.3'
spec.add_dependency 'activesupport', '>= 4.0', '< 5.3'
spec.add_dependency 'activerecord', '~> 6.1.4'
spec.add_dependency 'activesupport', '~> 6.1.4'
end
# rubocop:enable Metrics/BlockLength
2 changes: 1 addition & 1 deletion lib/bundle_notification/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module BundleNotification
VERSION = '0.2.2'
VERSION = '0.2.3'
end