-
Notifications
You must be signed in to change notification settings - Fork 11
/
valium.gemspec
30 lines (26 loc) · 1.04 KB
/
valium.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
26
27
28
29
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "valium/version"
Gem::Specification.new do |s|
s.name = "valium"
s.version = Valium::VERSION
s.authors = ["Ernie Miller"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/ernie/valium"
s.summary = %q{
Access attribute values directly, without instantiating ActiveRecord objects.
}
s.description = %q{
Suffering from ActiveRecord instantiation anxiety? Try Valium. It
saves your CPU and memory for more important things, retrieving
just the values you're interested in seeing.
}
s.rubyforge_project = "valium"
s.add_dependency 'activerecord', '>= 3.0.2'
s.add_development_dependency 'rspec', '~> 2.6.0'
s.add_development_dependency 'sqlite3', '~> 1.3.3'
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_paths = ["lib"]
end