-
Notifications
You must be signed in to change notification settings - Fork 30
/
inkwell.gemspec
28 lines (23 loc) · 1006 Bytes
/
inkwell.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
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
require "inkwell/version"
Gem::Specification.new do |s|
s.name = "inkwell"
s.version = Inkwell::VERSION
s.authors = ["Sergey Sokolov"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/salkar/inkwell#inkwell"
s.summary = "Inkwell provides simple way to add social networking
features like comments, reblogs, favorites, following/followers,
communities, categories and timelines to your Ruby on Rails application."
s.description = "Inkwell provides simple way to add social networking
features like comments, reblogs, favorites, following/followers,
communities, categories and timelines to your Ruby on Rails application."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*",
"MIT-LICENSE",
"Rakefile",
"README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency("rails", ">= 5", "< 6")
end