mirror of
https://github.com/thedjinn/js303.git
synced 2025-08-17 07:48:13 +02:00
23 lines
666 B
Ruby
23 lines
666 B
Ruby
# -*- encoding: utf-8 -*-
|
|
require 'json'
|
|
|
|
package = JSON.parse(File.read('package.json'))
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.name = "emblem-source"
|
|
gem.authors = ["Alex Matchneer"]
|
|
gem.email = ["machty@gmail.com"]
|
|
gem.date = Time.now.strftime("%Y-%m-%d")
|
|
gem.description = %q{Emblem.js source code wrapper for (pre)compilation gems.}
|
|
gem.summary = %q{Emblem.js source code wrapper}
|
|
gem.homepage = "https://github.com/machty/emblem.js/"
|
|
gem.version = package["version"]
|
|
gem.license = 'MIT'
|
|
|
|
gem.files = [
|
|
'dist/emblem.js',
|
|
'dist/emblem.min.js',
|
|
'lib/emblem/source.rb'
|
|
]
|
|
end
|