summary refs log tree commit diff stats
path: root/rails/lingo.gemspec
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2022-12-10 09:29:30 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2022-12-10 09:29:30 -0500
commit0380a97230023a78ad08b738c4520e901485ed63 (patch)
tree2f3b4e91453962fd5bb36cf652c808cb7f41c3a7 /rails/lingo.gemspec
parent6af7b09fa551c6cc980bb54fefd1db88c904654f (diff)
downloadlingo-0380a97230023a78ad08b738c4520e901485ed63.tar.gz
lingo-0380a97230023a78ad08b738c4520e901485ed63.tar.bz2
lingo-0380a97230023a78ad08b738c4520e901485ed63.zip
Added Rails engine for scoreboard
refs #13
Diffstat (limited to 'rails/lingo.gemspec')
-rw-r--r--rails/lingo.gemspec28
1 files changed, 28 insertions, 0 deletions
diff --git a/rails/lingo.gemspec b/rails/lingo.gemspec new file mode 100644 index 0000000..a738042 --- /dev/null +++ b/rails/lingo.gemspec
@@ -0,0 +1,28 @@
1require_relative "lib/lingo/version"
2
3Gem::Specification.new do |spec|
4 spec.name = "lingo"
5 spec.version = Lingo::VERSION
6 spec.authors = ["Star Rauchenberger"]
7 spec.email = ["fefferburbia@gmail.com"]
8 spec.homepage = "https://github.com/hatkirby/lingo"
9 spec.summary = "Summary of Lingo."
10 spec.description = "Description of Lingo."
11 spec.license = "MIT"
12
13 # Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
14 # to allow pushing to a single host or delete this section to allow pushing to any host.
15
16 spec.metadata["homepage_uri"] = spec.homepage
17 spec.metadata["source_code_uri"] = "https://github.com/hatkirby/lingo"
18
19
20 spec.files = Dir.chdir(File.expand_path(__dir__)) do
21 Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
22 end
23
24 spec.add_dependency "rails", ">= 7.0.3"
25 spec.add_dependency "haml-rails", "~> 2.0"
26 spec.add_dependency 'sassc-rails'
27 spec.add_development_dependency 'webrick', '~> 1.7'
28end