-
Notifications
You must be signed in to change notification settings - Fork 0
/
easy_html_creator.gemspec
37 lines (29 loc) · 1.5 KB
/
easy_html_creator.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
37
Gem::Specification.new do |s|
s.name = 'easy_html_creator'
s.version = '1.3.2'
s.licenses = ['MIT']
s.summary = "A simple project for fast and easy HTML website createmend"
s.description = "Easy_html_creator is a gem that makes developing static HTML websites easy and joyful.
Once you learned the joy of haml or sass, it get boring to program in 'plain old' html and css.
Using our Gem you could generate and maintain multiple static websites and program them in your preferred languages.
Currently supported by our fast and lightweight re-generation server: HAML, Sass (with bootstarp) and CoffeeScript.
We also included the 'actionview' gem, to enable the use of rails standard functions like 'text_field_tag'."
s.authors = ["Dennis van de Hoef"]
s.email = ['[email protected]']
s.files = Dir.glob("{bin,lib,dev_root}/**/*") + %w(LICENSE README.md CHANGELOG.md)
s.homepage = 'http://easyhtmlcreator.bplaced.net'
s.executables = ["ehc",
"easy_html_creator"]
s.required_ruby_version = '>= 2.0.0'
s.add_runtime_dependency 'haml'
s.add_runtime_dependency 'sass'
s.add_runtime_dependency 'coffee-script'
s.add_runtime_dependency 'bootstrap-sass'
s.add_runtime_dependency 'actionview'
s.add_runtime_dependency 'cssminify'
s.add_runtime_dependency 'uglifier'
s.add_runtime_dependency 'htmlcompressor'
s.add_development_dependency 'rake'
s.add_development_dependency 'yard'
s.add_development_dependency 'minitest-reporters'
end