-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction-draft.gemspec
More file actions
24 lines (18 loc) · 909 Bytes
/
action-draft.gemspec
File metadata and controls
24 lines (18 loc) · 909 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
# frozen_string_literal: true
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "action-draft/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "action-draft"
spec.version = ActionDraft::VERSION
spec.authors = ["Jason Lee"]
spec.email = ["huacnlee@gmail.com"]
spec.homepage = "http://github.com/rails-engine/action-draft"
spec.summary = "Action Draft brings your ActiveRecord model to storage multiple draft attributes without add columns to the business table."
spec.description = "Action Draft brings your ActiveRecord model to storage multiple draft attributes without add columns to the business table."
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "CHANGELOG.md", "README.md"]
spec.add_dependency "rails", ">= 5.2"
spec.add_development_dependency "pg"
end