public
Description: Video Distributing Web Service
Homepage: http://heyspread.com
Clone URL: git://github.com/sadikzzz/heyspread-ruby.git
heyspread-ruby / heyspread-ruby.gemspec
100644 28 lines (23 sloc) 0.76 kb
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
GEM = "heyspread-ruby"
VER = "0.3"
AUTHOR = "Bruno Celeste"
EMAIL = "bruno.celeste@particle-s.com"
HOMEPAGE = "http://heyspread.com"
SUMMARY = "An interface library that allows Ruby applications to distribute videos over the best video sites."
 
Gem::Specification.new do |s|
  s.name = GEM
  s.version = VER
  s.author = AUTHOR
  s.email = EMAIL
  s.homepage = HOMEPAGE
  s.summary = SUMMARY
  s.description = s.summary
 
  s.require_path = 'lib'
  s.autorequire = 'heyspread'
 
  # get this easily and accurately by running 'Dir.glob("{lib,test}/**/*")'
  # in an IRB session. However, GitHub won't allow that command hence
  # we spell it out.
  s.files = ["MIT-LICENSE", "README", "lib/heyspread.rb"]
  s.test_files = []
 
  s.add_dependency 'hpricot'
end