-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodel_formatting.gemspec
More file actions
23 lines (22 loc) · 899 Bytes
/
model_formatting.gemspec
File metadata and controls
23 lines (22 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$LOAD_PATH.unshift 'lib'
require 'model_formatting'
spec = Gem::Specification.new do |s|
s.name = "model_formatting"
s.version = "0.6.7"
s.date = "2014-11-25"
s.author = "ENTP"
s.email = "company@entp.com"
s.homepage = "http://github.com/entp"
s.platform = Gem::Platform::RUBY
s.summary = "Automatically format model attributes using redcarpet (markdown) and Tender/Lighthouse extensions."
# s.files = FileList['[a-zA-Z]*', 'bin/*', 'lib/**/*', 'rails/**/*', 'test/**/*']
s.has_rdoc = false
s.extra_rdoc_files = ["README"]
s.add_dependency("redcarpet", "~>2.2")
s.add_dependency("actionpack", "~>3.2")
s.add_dependency("activerecord", "~>3.2")
s.add_dependency("activesupport", "~>3.2")
s.add_dependency("tidy_ffi", "~>0.1.2")
s.add_development_dependency("jeremymcanally-context", "~>0.5.5")
s.add_development_dependency("jeremymcanally-matchy", "~>0.1.0")
end