-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsynaptic.gemspec
More file actions
30 lines (25 loc) · 852 Bytes
/
synaptic.gemspec
File metadata and controls
30 lines (25 loc) · 852 Bytes
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 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require './lib/version'
Gem::Specification.new do |s|
s.name = "synaptic"
s.version = Synaptic::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Christian Blais", "Thierry Joyal"]
s.email = ["christ.blais@gmail.com", "thierry.joyal@gmail.com"]
s.homepage = "http://github.com/semiweb/synaptic"
s.summary = "Synaptic reporting tool for ActiveRecord"
s.description = "Synaptic reporting tool for ActiveRecord"
s.add_dependency 'activerecord', '>=3.0.0'
s.files = [
'LICENSE',
'README',
'synaptic.gemspec',
'lib/synaptic.rb',
'lib/version.rb',
'lib/active_record/extensions.rb',
'lib/synaptic/neuron.rb'
]
s.require_paths = ['lib', 'test']
end