forked from walterhorstman/ordered-active-record
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathordered-active-record.gemspec
More file actions
24 lines (19 loc) · 959 Bytes
/
ordered-active-record.gemspec
File metadata and controls
24 lines (19 loc) · 959 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
$:.push(File.expand_path('../lib', __FILE__))
Gem::Specification.new do |s|
s.name = 'ordered-active-record'
s.summary = 'Lightweight ordering of models in ActiveRecord 3 or higher'
s.description = 'This gem allows you to have ordered models. It is like the old acts_as_list, but very lightweight and with an optimized SQL syntax.'
s.version = '0.9.8'
s.required_ruby_version = '>= 1.9.3'
s.author = 'Walter Horstman'
s.email = 'walter.horstman@itonrails.com'
s.homepage = 'http://github.com/walterhorstman/ordered-active-record'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_path = 'lib'
s.add_dependency('activerecord', '>= 3')
s.add_development_dependency('rspec')
s.add_development_dependency('sqlite3')
end