-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgem.gemspec
More file actions
30 lines (23 loc) · 1022 Bytes
/
gem.gemspec
File metadata and controls
30 lines (23 loc) · 1022 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
25
26
27
28
29
30
# coding: UTF-8
Gem::Specification.new do |s|
s.add_development_dependency('devise', '>= 1.1')
s.add_development_dependency('rspec-rails', '>= 2.4')
s.add_development_dependency('yard', '>= 0.6')
s.add_development_dependency('sqlite3')
# If you add a runtime dependency, please maintain alphabetical order
s.add_runtime_dependency('rails', '>= 3.0.0')
# TODO: uncomment next line when rails_admin gem will be released
# s.add_runtime_dependency('rails_admin', '> 0.0.1')
s.name = "rails_admin_integer_array_field"
s.version = "0.0.1"
s.platform = Gem::Platform::RUBY
s.authors = ["Dexion"]
s.email = ["no@mail.org"]
s.homepage = "http://github.com/dexion/"
s.summary = "Adds a integer_array (postgresql) field to rails_admin"
s.description = ""
s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.6"
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
end