Sha256: c672d046050c00846c4b6f1143ddb89254bd0c4a0d6e7c0312daad09066c8f3e

Contents?: true

Size: 1.72 KB

Versions: 1

Compression:

Stored size: 1.72 KB

Contents

$:.push File.expand_path("../lib", __FILE__)

# Maintain your gem's version:
require "activity_notification/version"

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name          = "activity_notification"
  s.version       = ActivityNotification::VERSION
  s.platform      = Gem::Platform::RUBY
  s.authors       = ["Shota Yamazaki"]
  s.email         = ["shota.yamazaki.8@gmail.com"]
  s.homepage      = "https://github.com/simukappu/activity_notification"
  s.summary       = "Integrated user activity notifications for Ruby on Rails"
  s.description   = "Integrated user activity notifications for Ruby on Rails. Provides functions to configure multiple notification targets and make activity notifications with notifiable models, like adding comments, responding etc."
  s.license       = "MIT"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- spec/*`.split("\n")
  s.require_paths = ["lib"]
  s.required_ruby_version = '>= 2.1.0'

  s.add_dependency 'railties', '>= 4.2.0', '< 5.1'
  s.add_dependency 'activerecord', '>= 4.2.0'
  s.add_dependency 'i18n', '>= 0.5.0'
  s.add_dependency 'jquery-rails', '>= 3.1.1'

  s.add_development_dependency 'mongoid', '>= 4.0.0'
  s.add_development_dependency 'sqlite3', '~> 1.3.13'
  s.add_development_dependency 'rspec-rails', '~> 3.5.1'
  s.add_development_dependency 'factory_girl_rails', '~> 4.8.0'
  s.add_development_dependency 'simplecov', '~> 0.14.1'
  s.add_development_dependency 'yard', '~> 0.9.8'
  s.add_development_dependency 'yard-activesupport-concern', '~> 0.0.1'
  s.add_development_dependency 'devise', '~> 4.2.1'
  s.add_development_dependency 'aws-sdk', '~> 2'
  s.add_development_dependency 'slack-notifier', '>= 1.5.1'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
activity_notification-1.3.0 activity_notification.gemspec