forked from public-activity/public_activity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
public_activity.gemspec
25 lines (21 loc) · 1018 Bytes
/
public_activity.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'public_activity/version'
Gem::Specification.new do |s|
s.name = 'public_activity'
s.version = PublicActivity::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Piotrek Okoński", "Kuba Okoński"]
s.email = "piotrek@okonski.org"
s.homepage = 'https://github.com/pokonski/public_activity'
s.summary = "Smooth activity tracking for ActiveRecord models"
s.description = "Smooth activity tracking for your ActiveRecord models. Provides Activity model with details about actions performed by your users, like adding comments, responding etc."
s.files = `git ls-files lib`.split("\n") + ['Gemfile','Rakefile','README.md', 'MIT-LICENSE']
s.test_files = `git ls-files spec`.split("\n")
s.require_paths = ['lib']
s.add_dependency 'activerecord', '>= 3.0.0'
s.add_dependency 'activesupport', '>= 3.0.0'
s.add_dependency 'i18n', '>= 0.5.0'
s.add_dependency 'pusher'
s.add_development_dependency 'rspec'
end