-
Notifications
You must be signed in to change notification settings - Fork 2
/
lalala-development.gemspec
36 lines (30 loc) · 1.05 KB
/
lalala-development.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'lalala/version'
Gem::Specification.new do |gem|
gem.name = "lalala-development"
gem.version = Lalala::BUILD_VERSION
gem.license = 'MIT'
gem.authors = [
"Simon Menke",
"Yves Van Broekhoven",
"Steven Vandevelde",
"Hans Spooren",
"Inge Reulens",
"Simon Pertz"
]
gem.email = ["[email protected]"]
gem.description = %q{Lalala: Probably the best CMS in the world}
gem.summary = %q{Lalala: Probably the best CMS in the world.}
gem.homepage = "http://mrhenry.be"
gem.files = []
gem.executables = []
gem.test_files = []
gem.require_paths = ["lib"]
# generic
gem.add_runtime_dependency 'lalala', Lalala::BUILD_VERSION
gem.add_runtime_dependency 'lalala-assets', Lalala::BUILD_VERSION
gem.add_runtime_dependency 'pry-rails', '> 0'
gem.add_runtime_dependency 'sqlite3', '> 0'
end