-
Notifications
You must be signed in to change notification settings - Fork 1
/
vitrage.gemspec
29 lines (24 loc) · 1.22 KB
/
vitrage.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "vitrage/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "vitrage"
s.version = Vitrage::VERSION
s.authors = ["Ivan Dymkov"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/dymio/vitrage"
s.summary = "Web-Page content manage for Rails, based on separated content pieces (blocks)"
s.description = "Vitrage allows store and manage your Rails application web-pages content as separated pieces of different types: text, image, slider, several-columned text etc. Pieces are objects of different Rails models having their specific views for show and edit. Vitrage allows you inline editing of content pieces."
s.license = "MIT"
s.files = Dir["{app,config,db,lib,vendor}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", ">=4.1"
s.add_dependency "sass-rails"
s.add_dependency "coffee-rails"
s.add_dependency "jquery-rails"
s.add_dependency "remotipart", ">=1.2.1"
s.add_dependency "formtastic", ">=2"
s.add_dependency "evil_icons"
s.add_development_dependency "sqlite3"
end