forked from arBmind/guard-livereload
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguard-livereload.gemspec
More file actions
26 lines (22 loc) · 951 Bytes
/
Copy pathguard-livereload.gemspec
File metadata and controls
26 lines (22 loc) · 951 Bytes
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'guard/livereload/version'
Gem::Specification.new do |s|
s.name = 'guard-livereload'
s.version = Guard::LiveReloadVersion::VERSION
s.author = 'Thibaud Guillaume-Gentil'
s.email = 'thibaud@thibaud.me'
s.summary = 'Guard plugin for livereload'
s.description = "Guard::LiveReload automatically reloads your browser when 'view' files are modified."
s.homepage = 'https://rubygems.org/gems/guard-livereload'
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^spec/})
s.require_path = 'lib'
s.add_dependency 'guard', '~> 2.8'
s.add_dependency 'guard-compat', '~> 1.0'
s.add_dependency 'em-websocket', '~> 0.5'
s.add_dependency 'multi_json', '~> 1.8'
s.add_development_dependency 'bundler', '>= 1.3.5'
end