forked from ai/evil-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevil-blocks-rails.gemspec
More file actions
25 lines (20 loc) · 851 Bytes
/
evil-blocks-rails.gemspec
File metadata and controls
25 lines (20 loc) · 851 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
require 'pathname'
package = Pathname(__FILE__).dirname.join('package.json').read
version = package.match(/"version": "([\d\.]+)",/)[1]
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'evil-blocks-rails'
s.version = version
s.summary = 'Tiny JS framework for web pages to split your app ' +
'to independent blocks'
s.files = ['lib/evil-blocks.debug.js', 'lib/evil-blocks.js',
'lib/evil-blocks-rails.rb',
'LICENSE', 'README.md', 'ChangeLog.md']
s.extra_rdoc_files = ['LICENSE', 'README.md', 'ChangeLog.md']
s.require_path = 'lib'
s.author = 'Andrey Sitnik'
s.email = '[email protected]'
s.homepage = 'https://github.com/ai/evil-blocks'
s.license = 'MIT'
s.add_dependency 'sprockets', '>= 2'
end