-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbagman.gemspec
More file actions
20 lines (17 loc) · 854 Bytes
/
bagman.gemspec
File metadata and controls
20 lines (17 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "bagman/version"
Gem::Specification.new do |s|
s.name = "bagman"
s.version = Bagman::VERSION
s.authors = ["Lachie Cox", "Ben Askins"]
s.email = ["lachiec@gmail.com", "ben.askins@gmail.com"]
s.homepage = "http://github.com/plus2/bagman"
s.summary = %q{Add a bag of attributes to ActiveRecord models.}
s.description = %q{We built Bagman for a project. We wanted fast prototyping and development, and some level of escape from the schema on relational databases.}
s.rubyforge_project = "bagman"
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