-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsurveyor2.gemspec
34 lines (28 loc) · 1.1 KB
/
surveyor2.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "surveyor/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "surveyor2"
s.version = Surveyor::VERSION
s.authors = ["Alexandre Jesus"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/whitesmith/surveyor2"
s.summary = "Summary of Surveyor2."
s.description = "Description of Surveyor2."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.required_ruby_version = ">= 2.7.0"
s.add_dependency "rails", ">= 5.1"
s.add_dependency "uuidtools", "~>2.1.5"
s.add_dependency "mustache"
s.add_dependency "rabl"
s.add_development_dependency "sqlite3"
s.add_development_dependency "appraisal"
s.add_development_dependency "factory_bot"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "database_cleaner"
s.add_development_dependency "shoulda-matchers"
s.add_development_dependency "byebug"
s.add_development_dependency "rubocop"
end