forked from udacity/activeadmin_json_editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
activeadmin_json_editor.gemspec
25 lines (22 loc) · 1.2 KB
/
activeadmin_json_editor.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
# coding: utf-8
require File.expand_path('../lib/activeadmin/json_editor/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = 'activeadmin_json_editor'
spec.version = ActiveAdmin::JsonEditor::VERSION
spec.authors = ['allanbreyes']
spec.email = ['allan@udacity.com']
spec.summary = 'add "json_input" and "jsonb_input" field type to active_admin that allow to edit Postgresql json and jsonb values'
spec.description = '"json_input" field allow to edit json value as json array with using jsoneditor.js from http://jsoneditoronline.org'
spec.homepage = 'https://github.com/wild-r/activeadmin_json_editor'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
# spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_rubygems_version = '>= 1.3.6'
spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_dependency 'railties', '>= 3.0', '< 5.3'
# spec.add_development_dependency "rake", "~> 0"
# spec.add_dependency "active_admin", "~> 1.0.0"
spec.add_dependency 'ace-rails-ap'
end