-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_env.gemspec
More file actions
32 lines (28 loc) · 1.01 KB
/
get_env.gemspec
File metadata and controls
32 lines (28 loc) · 1.01 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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'get_env/version'
Gem::Specification.new do |spec|
spec.name = 'get_env'
spec.version = GetEnv::VERSION
spec.authors = [
'Simon Mathieu',
'Bartek Kruszczynski',
'Jonathan Barber',
'Paul Padier']
spec.email = [
'bartek@rainforestqa.com',
'jonathan@rainforestqa.com',
'pp@rainforestqa.com']
spec.summary = 'Read values from ENV in a reasonable way'
spec.description = 'Read values from ENV in a reasonable way'
spec.homepage = 'https://github.com/rainforestapp/get_env'
spec.license = 'MIT'
spec.files = Dir['lib/**/*']
spec.test_files = Dir['spec/**/*']
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rspec_junit_formatter'
spec.add_development_dependency 'rubocop'
end