-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsurveyor_tweaks.gemspec
30 lines (24 loc) · 1.14 KB
/
surveyor_tweaks.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
# This gemspec file is based on this template:
# https://github.com/wycats/newgem-template/blob/master/newgem.gemspec
# as suggested by the "Make your own gem" RubyGems Guide:
# http://guides.rubygems.org/make-your-own-gem/
require File.expand_path("../lib/surveyor_tweaks/version", __FILE__)
Gem::Specification.new do |s|
s.name = 'surveyor_tweaks'
s.version = SurveyorTweaks::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Craig Harman"]
s.email = '[email protected]'
s.homepage = 'https://github.com/charman/surveyor_tweaks'
s.summary = 'Tweaks to the Surveyor Gem'
s.description = 'Adds some functionality to the Surveyor Gem - https://github.com/NUBIC/surveyor'
# If you have other dependencies, add them here
s.add_dependency('surveyor', '~> 1.4.0')
# If you need to check in files that aren't .rb files, add them here
s.files = Dir["{lib}/**/*.rb", "bin/*", "LICENSE", "*.md"]
s.require_path = 'lib'
# If you need an executable, add it here
# s.executables = ["newgem"]
# If you have C extensions, uncomment this line
# s.extensions = "ext/extconf.rb"
end