-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathacts_as_bits.gemspec
36 lines (31 loc) · 1.22 KB
/
acts_as_bits.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
31
32
33
34
35
36
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{acts_as_bits}
s.version = "0.2.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["maiha"]
s.date = %q{2009-10-19}
s.description = %q{ActiveRecord plugin that maintains massive flags in one column}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["README.md"]
s.files = `git ls-files -z`.split("\x0")
s.homepage = %q{http://github.com/maiha/acts_as_bits}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{ActiveRecord plugin that maintains massive flags in one column}
s.add_development_dependency "bundler", "~> 1.5"
s.add_development_dependency "rake"
s.add_development_dependency "test-unit"
s.add_development_dependency "activesupport", "> 3.0.0"
s.add_development_dependency "activerecord", "> 3.0.0"
s.add_development_dependency "pg"
s.add_development_dependency "sqlite3"
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end