-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates-rails.gemspec
20 lines (16 loc) · 1001 Bytes
/
templates-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative 'lib/templates/version'
Gem::Specification.new do |spec|
spec.name = 'templates-rails'
spec.version = Templates::VERSION
spec.authors = ['Lukasz Czapiewski']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/Ancez/templates-rails'
spec.summary = 'View templating system for your Rails application. Design your app.'
spec.description = 'Create View templates and bootstrap interfaces in HTML without controllers. A system for creating and making design decisions. Make design decisions before building your app.'
spec.license = 'MIT'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/Ancez/templates-rails'
spec.metadata['changelog_uri'] = 'https://github.com/Ancez/templates-rails/blob/master/CHANGELOG.md'
spec.files = Dir["{app,config,lib}/**/*", "CHANGELOG.md", "MIT-LICENSE", "README.md"]
spec.add_development_dependency 'rails', '~> 7.0', '>= 7.0.0'
end