forked from wild5r/activeadmin_hstore_editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
activeadmin_hstore_editor.gemspec
24 lines (21 loc) · 1.14 KB
/
activeadmin_hstore_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
# coding: utf-8
require File.expand_path('../lib/activeadmin/hstore_editor/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = "activeadmin_hstore_editor"
spec.version = ActiveAdmin::HstoreEditor::VERSION
spec.authors = ["wild"]
spec.email = ["wild.exe@gmail.com"]
spec.summary = %q{add "hstore_input" field type to active_admin that allow to edit Postgresql hstore values}
spec.description = %q{"hstore_input" field allow to edit hstore value as json array with using jsoneditor.js from http://jsoneditoronline.org}
spec.homepage = "https://github.com/wild-r/activeadmin_hstore_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", "~> 6"
#spec.add_development_dependency "rake", "~> 0"
#spec.add_dependency "active_admin", "~> 1.0.0"
end