-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpancakes.gemspec
41 lines (35 loc) · 1.3 KB
/
pancakes.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
31
32
33
34
35
36
37
38
39
40
41
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'pancakes/version'
# Authors
authors = {
'Janko Marohnić' => '[email protected]',
'Stanko Krtalić Rusendić' => '[email protected]',
'Marko Ivanek' => '[email protected]',
'Damir Svrtan' => '[email protected]'
}
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'pancakes'
s.version = Pancakes::VERSION
s.authors = authors.keys
s.email = authors.values
s.homepage = 'https://github.com/pg-pancakes/pancakes'
s.summary = 'In browser database managment tool for Postgres databases'
s.description = 'View your app\'s database for every environment right from '\
'your browser.'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*',
'MIT-LICENSE',
'Rakefile',
'README.rdoc']
s.test_files = Dir['spec/**/*']
s.add_dependency 'rails', '~> 4.1.6'
s.add_dependency 'pg'
s.add_dependency 'pg-hstore'
s.add_dependency 'net-ssh-gateway'
s.add_dependency 'bootstrap-sass'
s.add_dependency 'font-awesome-sass'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'factory_girl_rails'
end