forked from kylastech/kylas_engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkylas_engine.gemspec
More file actions
38 lines (31 loc) · 1.46 KB
/
kylas_engine.gemspec
File metadata and controls
38 lines (31 loc) · 1.46 KB
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
# frozen_string_literal: true
require_relative 'lib/kylas_engine/version'
Gem::Specification.new do |spec|
spec.name = 'kylas_engine'
spec.version = KylasEngine::VERSION
spec.authors = ['Kylas']
spec.email = ['no-reply@kylas.io']
# spec.homepage = "https://www.testurl.com"
spec.summary = 'Summary of KylasEngine.'
spec.description = 'Description of KylasEngine.'
spec.license = 'MIT'
spec.required_ruby_version = '~> 3.0'
# 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['source_code_uri'] = 'https://github.com/amuratech/kylas_engine'
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
end
spec.add_dependency 'devise'
spec.add_dependency 'pg'
spec.add_dependency 'rails', '>= 7.0.2.3'
spec.add_dependency 'sassc-rails'
spec.add_dependency 'sprockets-rails'
spec.add_development_dependency 'factory_bot_rails'
spec.add_development_dependency 'pry', '~> 0.13.1'
spec.add_development_dependency 'rspec-rails', '~> 5.0.0'
spec.add_development_dependency 'webmock'
end