forked from intercom/intercom-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
intercom-rails.gemspec
30 lines (25 loc) · 1.32 KB
/
intercom-rails.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
26
27
28
29
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "intercom-rails/version"
Gem::Specification.new do |s|
s.name = "intercom-rails"
s.version = IntercomRails::VERSION
s.authors = ["Ben McRedmond", "Ciaran Lee", "Darragh Curran",]
s.homepage = "http://www.intercom.io"
s.summary = %q{Rails helper for emitting javascript script tags for Intercom}
s.description = %Q{Intercom (https://www.intercom.io) is a customer relationship management and messaging tool for web app owners. This library makes it easier to use the correct javascript tracking code in your rails applications.}
s.rubyforge_project = "intercom-rails"
s.files = Dir["{app,config,db,lib}/**/*"] + ["Rakefile", "README.mdown"]
s.test_files = Dir["test/**/*"]
s.add_dependency 'activesupport', '>3.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'actionpack', '>3.2.12'
s.add_development_dependency 'rspec', '~> 3.1'
s.add_development_dependency 'rspec-rails', '~> 3.1'
s.add_development_dependency 'pry'
s.add_development_dependency 'sinatra', '~> 1.4.5'
s.add_development_dependency 'thin', '~> 1.6.2'
s.add_development_dependency 'tzinfo'
s.add_development_dependency 'gem-release'
end