forked from innku/kublog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkublog.gemspec
39 lines (32 loc) · 1.48 KB
/
kublog.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "kublog/version"
Gem::Specification.new do |s|
s.name = "kublog"
s.version = Kublog::VERSION
s.authors = ["Adrian Cuadros"]
s.email = ["[email protected]"]
s.homepage = "http://rutanet.com/blog"
s.summary = %q{Product Blog Engine, simple, social and fully integrated with your Users}
s.description = %q{Rails Mountable Engine that sets up your Product Blog, share your posts on facebook, twitter and E-mail your users with your latest product news}
s.rubyforge_project = "kublog"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# Runtime dependencies
s.add_runtime_dependency "rails", '>=3.1.0'
s.add_runtime_dependency "jquery-rails", '>=1.0.13'
s.add_runtime_dependency 'coffee-script', '>=2.2.0'
s.add_runtime_dependency "friendly_id", ">= 4.0.0.beta14"
s.add_runtime_dependency "sanitize"
# This gems should stop being dependencies but optional with certain features
s.add_runtime_dependency "rmagick"
s.add_runtime_dependency "carrierwave"
s.add_runtime_dependency 'liquid'
s.add_runtime_dependency 'twitter'
s.add_runtime_dependency 'fb_graph'
# Development dependencies
s.add_development_dependency "factory_girl_rails"
s.add_development_dependency "sqlite3"
end