-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbindings.gemspec
More file actions
19 lines (18 loc) · 803 Bytes
/
bindings.gemspec
File metadata and controls
19 lines (18 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# encoding: utf-8
Gem::Specification.new do |s|
s.name = "bindings"
s.version = "1.0.0"
s.author = "Steve Shreeve"
s.email = "steve.shreeve@gmail.com"
s.summary = "Access the lexical binding scope of a calling method"
s.description = "This gem lets you access variables from a calling method."
s.homepage = "https://github.com/shreeve/bindings"
s.license = "MIT"
s.platform = Gem::Platform::RUBY
s.files = `git ls-files`.split("\n") - %w[.gitignore]
s.extensions << 'ext/bindings/extconf.rb'
s.add_development_dependency "bundler", "~> 1.5"
s.add_development_dependency "rake"
s.add_development_dependency "rake-compiler"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
end