init project
parents
Showing
.gitignore
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | ||
# Specify your gem's dependencies in weixin_authorize.gemspec | ||
gemspec |
LICENSE.txt
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
lib/weixin_authorize.rb
0 → 100644
lib/weixin_authorize/version.rb
0 → 100644
weixin_authorize.gemspec
0 → 100644
# coding: utf-8 | ||
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'weixin_authorize/version' | ||
Gem::Specification.new do |spec| | ||
spec.name = "weixin_authorize" | ||
spec.version = WeixinAuthorize::VERSION | ||
spec.authors = ["lanrion"] | ||
spec.email = ["huaitao-deng@foxmail.com"] | ||
spec.description = %q{TODO: Write a gem description} | ||
spec.summary = %q{TODO: Write a gem summary} | ||
spec.homepage = "" | ||
spec.license = "MIT" | ||
spec.files = `git ls-files`.split($/) | ||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.require_paths = ["lib"] | ||
spec.add_development_dependency "bundler", "~> 1.3" | ||
spec.add_development_dependency "rake" | ||
end |
Please
register
or
sign in
to comment