-
Notifications
You must be signed in to change notification settings - Fork 311
/
social-share-button.gemspec
23 lines (20 loc) · 1.02 KB
/
social-share-button.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "social_share_button/version"
Gem::Specification.new do |s|
s.name = "social-share-button"
s.version = SocialShareButton::VERSION
s.authors = ["Jason Lee"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/huacnlee/social-share-button"
s.summary = %q{Helper for add social share feature in your Rails app. Twitter, Facebook, Weibo, Douban, QQ, Tumblr ...}
s.description = %q{Helper for add social share feature in your Rails app. Twitter, Facebook, Weibo, Douban, QQ, Tumblr ...}
s.license = 'MIT'
s.files = Dir.glob('lib/**/*') + %w(README.md CHANGELOG.md MIT-LICENSE)
s.require_paths = ["lib"]
# specify any dependencies here; for example:
s.files = Dir.glob("{bin,lib,config,app/assets/javascripts,app/assets/stylesheets,app/assets/images}/**/*")
s.files += %w(README.md CHANGELOG.md)
s.add_development_dependency "rails"
s.add_runtime_dependency "coffee-rails"
end