File: source_map.gemspec

package info (click to toggle)
ruby-source-map 3.0.1%2Bgit.20120229.bda06a3f-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 160 kB
  • sloc: ruby: 715; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 909 bytes parent folder | download | duplicates (3)
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
32
Gem::Specification.new do |gem|
  gem.name = 'source_map'
  gem.version = '3.0.1'

  gem.summary = 'Ruby support for source_maps (version 3)'
  gem.description = <<-DESC
  Ruby support for Source Maps allows you to interact with Source Maps in Ruby. This
  lets you do things like concatenate different javascript files and still debug them
  as though they were separate files.

  See the spec for more information:
https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit
  DESC

  gem.authors = ['Conrad Irwin']
  gem.email = %w(conrad.irwin@gmail.com)
  gem.homepage = 'http://github.com/ConradIrwin/ruby-source_map'

  gem.license = 'MIT'

  gem.required_ruby_version = '>= 1.8.7'

  gem.add_dependency 'json'
  gem.add_development_dependency 'rake'
  gem.add_development_dependency 'rspec'

  gem.files = Dir[*%w(
      lib/*
      lib/*/*
      LICENSE*
      README*)]
end