-
Notifications
You must be signed in to change notification settings - Fork 0
/
lesli_letter.gemspec
61 lines (45 loc) · 2.22 KB
/
lesli_letter.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
=begin
Lesli
Copyright (c) 2023, Lesli Technologies, S. A.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
Lesli · Ruby on Rails SaaS Development Framework.
Made with ♥ by https://www.lesli.tech
Building a better future, one line of code at a time.
@contact [email protected]
@website https://www.lesli.tech
@license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
// ·
=end
require_relative "lib/lesli_letter/version"
Gem::Specification.new do |spec|
spec.name = "lesli_letter"
spec.version = LesliLetter::VERSION
spec.platform = Gem::Platform::RUBY
spec.license = "GPL-3.0"
spec.authors = ["The Lesli Development Team"]
spec.email = ["[email protected]"]
spec.homepage = "https://www.lesli.dev/"
spec.summary = "Notes & Notebooks for the Lesli Framework."
spec.description = "Notes & Notebooks for the Lesli Framework."
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
# to allow pushing to a single host or delete this section to allow pushing to any host.
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/LesliTech/LesliLetter"
spec.metadata["source_code_uri"] = "https://github.com/LesliTech/LesliLetter"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "license", "Rakefile", "readme.md"]
end
spec.required_ruby_version = ">= 2.7.2"
spec.add_dependency "rails", "~> 7"
end