-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamic_content.gemspec
More file actions
executable file
·25 lines (21 loc) · 1.03 KB
/
dynamic_content.gemspec
File metadata and controls
executable file
·25 lines (21 loc) · 1.03 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dynamic_content/version'
Gem::Specification.new do |spec|
spec.name = "dynamic_content"
spec.version = DynamicContent::VERSION
spec.authors = ["Hugo Demiglio"]
spec.email = ["hugodemiglio@gmail.com"]
spec.description = %q{Simple way to manage dynamic fields with editable content on database for Rails and ActiveAdmin.}
spec.summary = %q{Editable content on dynamic fields.}
spec.homepage = 'http://github.com/formaweb/dynamic_content'
spec.license = 'MIT'
# spec.files = `git ls-files lib`.split($/)
spec.files = Dir['{lib,app}/**/*'].keep_if { |file| File.file?(file) }
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'dragonfly', '~> 1.0'
spec.add_dependency 'mime-types', '~> 2.0'
end