forked from rubiety/has_draft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
has_draft.gemspec
29 lines (25 loc) · 1.1 KB
/
has_draft.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "has_draft/version"
Gem::Specification.new do |s|
s.name = "has_draft"
s.version = HasDraft::VERSION
s.author = "Ben Hughes"
s.email = "[email protected]"
s.homepage = "http://github.com/rubiety/has_draft"
s.summary = "Attached draft model to your ActiveRecord models."
s.description = "Allows for your ActiveRecord models to have drafts which are stored in a separate duplicate table."
s.license = "MIT"
s.files = Dir["{lib,spec}/**/*", "[A-Z]*", "init.rb"]
s.require_path = "lib"
s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.4"
s.add_dependency("activesupport", [">= 3.0.0"])
s.add_dependency("activerecord", [">= 3.0.0"])
s.add_development_dependency("rspec", ["~> 2.0"])
s.add_development_dependency("factory_girl", ["~> 1.3.1"])
s.add_development_dependency("faker", ["~> 0.9.1"])
s.add_development_dependency("sqlite3", ["~> 1.3.4"])
s.add_development_dependency("appraisal", ["~> 0.4.0"])
s.add_development_dependency "rake"
end