-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcurrent_domain.gemspec
More file actions
25 lines (21 loc) · 1.06 KB
/
current_domain.gemspec
File metadata and controls
25 lines (21 loc) · 1.06 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
require File.expand_path('../lib/current_domain/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Andrei Gridnev']
gem.email = ['andrew.gridnev@gmail.com']
gem.summary = 'Gets current domain of a Rails web app'
gem.description = 'Adds current_domain helper method to ActionController::Base'
gem.homepage = 'https://github.com/andrewgr/current_domain/'
gem.license = 'MIT'
gem.files = `git ls-files`.split($ORS)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^spec/})
gem.name = 'current_domain'
gem.require_paths = ['lib']
gem.version = CurrentDomain::VERSION
gem.add_runtime_dependency 'activesupport', '~> 4'
gem.add_development_dependency 'rspec', '~> 3'
gem.add_development_dependency 'actionpack', '~> 4'
gem.add_development_dependency 'rubocop', '~> 0.30'
gem.add_development_dependency 'cane', '~> 2.6', '>= 2.6.1'
gem.add_development_dependency 'codeclimate-test-reporter', '~> 0.4', '>= 0.4.7'
end