forked from guard/guard-livereload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguard-livereload.gemspec
27 lines (22 loc) · 1005 Bytes
/
guard-livereload.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'guard/livereload/version'
Gem::Specification.new do |s|
s.name = "guard-livereload"
s.version = Guard::LiveReloadVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Thibaud Guillaume-Gentil']
s.email = ['[email protected]']
s.homepage = 'http://rubygems.org/gems/guard-livereload'
s.summary = 'Guard gem for livereload'
s.description = "Guard::LiveReload automatically reload your browser when 'view' files are modified."
s.rubyforge_project = "guard-livereload"
s.add_dependency 'guard'
s.add_dependency 'em-websocket', '~> 0.1.3'
s.add_dependency 'json', '~> 1.4.6'
s.add_development_dependency 'bundler', '~> 1.0.2'
s.add_development_dependency 'guard-rspec', '~> 0.1.3'
s.add_development_dependency 'rspec', '~> 2.0.0'
s.files = Dir.glob('{lib}/**/*') + %w[LICENSE README.rdoc]
s.require_path = 'lib'
end