-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphp_embed.gemspec
More file actions
22 lines (18 loc) · 814 Bytes
/
php_embed.gemspec
File metadata and controls
22 lines (18 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/php_embed/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["do_aki"]
gem.email = ["do.hiroaki@gmail.com"]
gem.description = %q{execute PHP code in Ruby code}
gem.summary = %q{execute PHP code in Ruby code}
gem.homepage = %q{https://github.com/do-aki/php_embed}
gem.extensions = ['ext/php_embed/extconf.rb']
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "php_embed"
gem.require_paths = ['lib', 'ext']
gem.version = PhpEmbed::VERSION
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rake'
end