mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 18:29:53 +00:00
lang/c/msgpack: added Messagepack, a binary-based efficient data interchange format.
git-svn-id: file:///Users/frsyuki/project/msgpack-git/svn/x@48 5a5092ae-2292-43ba-b2d5-dcab9c1a2731
This commit is contained in:
commit
269cda016d
50 changed files with 4869 additions and 0 deletions
75
ruby/gem/config/hoe.rb
Normal file
75
ruby/gem/config/hoe.rb
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
require 'msgpack/version'
|
||||
|
||||
AUTHOR = 'FURUHASHI Sadayuki' # can also be an array of Authors
|
||||
EMAIL = "fr _at_ syuki.skr.jp"
|
||||
DESCRIPTION = "An object-oriented parser generator based on Parser Expression Grammar"
|
||||
GEM_NAME = 'msgpack' # what ppl will type to install your gem
|
||||
RUBYFORGE_PROJECT = 'msgpack' # The unix name for your project
|
||||
HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
|
||||
DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
|
||||
EXTRA_DEPENDENCIES = [
|
||||
# ['activesupport', '>= 1.3.1']
|
||||
] # An array of rubygem dependencies [name, version]
|
||||
|
||||
@config_file = "~/.rubyforge/user-config.yml"
|
||||
@config = nil
|
||||
RUBYFORGE_USERNAME = "unknown"
|
||||
def rubyforge_username
|
||||
unless @config
|
||||
begin
|
||||
@config = YAML.load(File.read(File.expand_path(@config_file)))
|
||||
rescue
|
||||
puts <<-EOS
|
||||
ERROR: No rubyforge config file found: #{@config_file}
|
||||
Run 'rubyforge setup' to prepare your env for access to Rubyforge
|
||||
- See http://newgem.rubyforge.org/rubyforge.html for more details
|
||||
EOS
|
||||
exit
|
||||
end
|
||||
end
|
||||
RUBYFORGE_USERNAME.replace @config["username"]
|
||||
end
|
||||
|
||||
|
||||
REV = nil
|
||||
# UNCOMMENT IF REQUIRED:
|
||||
# REV = YAML.load(`svn info`)['Revision']
|
||||
VERS = MessagePack::VERSION::STRING + (REV ? ".#{REV}" : "")
|
||||
RDOC_OPTS = ['--quiet', '--title', 'msgpack documentation',
|
||||
"--opname", "index.html",
|
||||
"--line-numbers",
|
||||
"--main", "README",
|
||||
"--inline-source"]
|
||||
|
||||
class Hoe
|
||||
def extra_deps
|
||||
@extra_deps.reject! { |x| Array(x).first == 'hoe' }
|
||||
@extra_deps
|
||||
end
|
||||
end
|
||||
|
||||
# Generate all the Rake tasks
|
||||
# Run 'rake -T' to see list of generated tasks (from gem root directory)
|
||||
$hoe = Hoe.new(GEM_NAME, VERS) do |p|
|
||||
p.developer(AUTHOR, EMAIL)
|
||||
p.description = DESCRIPTION
|
||||
p.summary = DESCRIPTION
|
||||
p.url = HOMEPATH
|
||||
p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
|
||||
p.test_globs = ["test/**/test_*.rb"]
|
||||
p.clean_globs |= ['**/.*.sw?', '*.gem', '.config', '**/.DS_Store'] #An array of file patterns to delete on clean.
|
||||
|
||||
# == Optional
|
||||
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
|
||||
#p.extra_deps = EXTRA_DEPENDENCIES
|
||||
|
||||
p.spec_extras = { # A hash of extra values to set in the gemspec.
|
||||
:extensions => %w[ext/extconf.rb]
|
||||
}
|
||||
end
|
||||
|
||||
CHANGES = $hoe.paragraphs_of('History.txt', 0..1).join("\\n\\n")
|
||||
PATH = (RUBYFORGE_PROJECT == GEM_NAME) ? RUBYFORGE_PROJECT : "#{RUBYFORGE_PROJECT}/#{GEM_NAME}"
|
||||
$hoe.remote_rdoc_dir = File.join(PATH.gsub(/^#{RUBYFORGE_PROJECT}\/?/,''), 'rdoc')
|
||||
$hoe.rsync_args = '-av --delete --ignore-errors'
|
||||
$hoe.spec.post_install_message = File.open(File.dirname(__FILE__) + "/../PostInstall.txt").read rescue ""
|
||||
15
ruby/gem/config/requirements.rb
Normal file
15
ruby/gem/config/requirements.rb
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
require 'fileutils'
|
||||
include FileUtils
|
||||
|
||||
require 'rubygems'
|
||||
%w[rake hoe newgem rubigen].each do |req_gem|
|
||||
begin
|
||||
require req_gem
|
||||
rescue LoadError
|
||||
puts "This Rakefile requires the '#{req_gem}' RubyGem."
|
||||
puts "Installation: gem install #{req_gem} -y"
|
||||
exit
|
||||
end
|
||||
end
|
||||
|
||||
$:.unshift(File.join(File.dirname(__FILE__), %w[.. lib]))
|
||||
Loading…
Add table
Add a link
Reference in a new issue