-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjse.gemspec
31 lines (25 loc) · 850 Bytes
/
jse.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
28
29
30
31
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'jse/version'
Gem::Specification.new do |s|
s.name = "jse"
s.version = JSE::VERSION
s.platform = Gem::Platform::RUBY
s.author = "Ryan Burrows"
s.email = "[email protected]"
s.homepage = "http://github.com/rhburrows/jse"
s.summary = "Stream editor for JSON streams"
s.description = <<-DESC
JsonStreamEditor allows manipulation of streams of json
DESC
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "json"
s.add_development_dependency "rspec"
s.add_development_dependency "cucumber"
s.add_development_dependency "fakefs"
s.files = File.readlines("Manifest.txt").inject([]) do |files, line|
files << line.chomp
end
s.executables = ['jse']
s.require_path = 'lib'
end