-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmugen.gemspec
executable file
·33 lines (27 loc) · 1.11 KB
/
mugen.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
31
32
33
# coding: UTF-8
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
require 'mugen/version'
Gem::Specification.new do |s|
s.name = "mugen"
s.version = Mugen::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Vladimir Penkin"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/shell/mugen"
s.summary = "MyGengo API wrapper"
s.description = "MyGengo API wrapper(http://mygengo.com/services/api/dev-docs/)"
s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.6"
s.add_runtime_dependency 'activesupport'
s.add_runtime_dependency 'httparty'
s.add_runtime_dependency 'haml'
s.add_runtime_dependency 'ruby-hmac'
s.add_development_dependency "rspec"
# The list of files to be contained in the gem
s.files = `git ls-files`.split("\n")
# s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
# s.extensions = `git ls-files ext/extconf.rb`.split("\n")
s.require_path = 'lib'
# For C extensions
# s.extensions = "ext/extconf.rb"
end