-
Notifications
You must be signed in to change notification settings - Fork 2
/
blocks.gemspec
25 lines (20 loc) · 1.06 KB
/
blocks.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "no_cms/blocks/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "nocms-blocks"
s.version = NoCms::Blocks::VERSION
s.authors = ["Rodrigo Garcia Suarez", 'Fernando Fdz. Zapico', 'Luis Mendo', 'Victor Ortiz', 'David J. Brenes', "Victorio Iglesias"]
s.email = ['[email protected]']
s.homepage = "https://github.com/simplelogica/nocms-blocks"
s.summary = "Engine of configurable content blocks CMS agnostic (NoCMS)."
s.description = "This engine allow adding content blocks to other AR model with very few dependencies."
s.files = Dir["{app,config,db,lib}/**/*", "CHANGELOG", "LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails", ">= 4.0.0", '< 5.2'
s.add_dependency "activeresource", ">= 4.0.0", '< 5.2'
s.add_dependency "globalize", '>= 4.0.0', '< 5.2'
s.add_dependency "awesome_nested_set", '>= 3.0.0', '< 3.2'
s.add_development_dependency "sqlite3"
end