-
Notifications
You must be signed in to change notification settings - Fork 30
/
solargraph-rails.gemspec
32 lines (27 loc) · 1.1 KB
/
solargraph-rails.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'solargraph/rails/version'
Gem::Specification.new do |spec|
spec.name = 'solargraph-rails'
spec.version = Solargraph::Rails::VERSION
spec.authors = ['Fritz Meissner']
spec.email = ['[email protected]']
spec.summary =
'Solargraph plugin that adds Rails-specific code through a Convention'
spec.description =
'Add reflection on ActiveModel dynamic attributes that will be created at runtime'
spec.homepage = 'https://github.com/iftheshoefritz/solargraph-rails'
spec.license = 'MIT'
spec.files =
`git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(assets|test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 2.3'
spec.add_development_dependency 'rake', '~> 12.3.3'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_runtime_dependency 'solargraph'
spec.add_runtime_dependency 'activesupport'
end