Sha256: 08a1bd1e821566e5ba97f13b46a786681d008a93e3581b6da3357078c6099423

Contents?: true

Size: 1.56 KB

Versions: 1

Compression:

Stored size: 1.56 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 'i18n', '>= 0.5.0'
  s.add_dependency 'activerecord', '>= 4.2.0'
  s.add_dependency 'jquery-rails', '>= 3.1.1'

  s.add_development_dependency 'sqlite3', '~> 1.3.12'
  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.12.0'
  s.add_development_dependency 'yard', '~> 0.9.5'
  s.add_development_dependency 'yard-activesupport-concern', '~> 0.0.1'
  s.add_development_dependency "devise", '~> 4.2.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
activity_notification-1.1.0 activity_notification.gemspec