forked from rs-pro/rails_admin_toggleable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrails_admin_toggleable.gemspec
More file actions
25 lines (20 loc) · 964 Bytes
/
rails_admin_toggleable.gemspec
File metadata and controls
25 lines (20 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rails_admin_toggleable/version'
Gem::Specification.new do |gem|
gem.name = "rails_admin_toggleable"
gem.version = RailsAdminToggleable::VERSION
gem.authors = ["Gleb Tv"]
gem.email = ["glebtv@gmail.com"]
gem.description = %q{Toggleable field for rails admin}
gem.summary = %q{Make any boolean field easily toggleable on\off from index view in rails admin}
gem.homepage = "https://gitlab.com/rocket-science/rails_admin_toggleable"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "rails_admin"
gem.add_development_dependency "bundler"
gem.add_development_dependency "rake"
end