-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathactiveadmin_custom_layout.gemspec
35 lines (28 loc) · 1.56 KB
/
activeadmin_custom_layout.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
$:.push File.expand_path("../lib", __FILE__)
require "activeadmin_custom_layout/version"
Gem::Specification.new do |s|
s.name = "activeadmin_custom_layout"
s.version = ActiveadminCustomLayout::VERSION
s.authors = ["ByS Sistemas de Control"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/bys-control/activeadmin_custom_layout"
s.summary = "Extracts ActiveAdmin page components as independent content_for tags to use in regular application layouts"
s.description = "This gem extracts ActiveAdmin page components as content_for tags using rails CaptureHelper. You can then use those tags to customize application layout as with any non-ActiveAdmin Rails application."
s.license = "MIT"
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_dependency "activeadmin", ">= 1.0.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency "devise", "~> 4.2", ">= 4.2.0"
s.add_development_dependency "pry", "~> 0.10", ">= 0.10.4"
s.add_development_dependency "pry-byebug", "~> 3.4", ">= 3.4.0"
s.add_development_dependency 'web-console'
s.add_development_dependency 'listen', '~> 3.0', '>= 3.0.5'
s.add_development_dependency 'spring'
s.add_development_dependency 'spring-watcher-listen', '~> 2.0', '>= 2.0.0'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'annotate'
s.add_development_dependency 'awesome_print'
end