forked from Smashing/smashing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smashing.gemspec
36 lines (30 loc) · 1.68 KB
/
smashing.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
32
33
34
35
36
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'smashing'
s.version = '1.0.0'
s.date = '2016-10-23'
s.executables = %w(smashing)
s.summary = "The wonderfully excellent dashboard framework."
s.description = "A framework for pulling together an overview of data that is important to your team and displaying it easily on TVs around the office. You write a bit of ruby code to gather data from some services and let Smashing handle the rest - displaying that data in a wonderfully simple layout. Built for developers and hackers, Smashing is highly customizable while maintaining humble roots that make it approachable to beginners."
s.author = "Daniel Beauchamp"
s.homepage = 'http://smashing.github.io/smashing'
s.license = "MIT"
s.files = Dir['README.md', 'javascripts/**/*', 'templates/**/*','templates/**/.[a-z]*', 'lib/**/*']
s.add_dependency('sass', '~> 3.4.24')
s.add_dependency('coffee-script', '~> 2.4.1')
s.add_dependency('execjs', '~> 2.7.0')
s.add_dependency('sinatra', '~> 2.0.0')
s.add_dependency('sinatra-contrib', '~> 2.0.0')
s.add_dependency('thin', '~> 1.7.0')
s.add_dependency('rufus-scheduler', '~> 3.4.2')
s.add_dependency('thor', '~> 0.19.4')
s.add_dependency('sprockets', '~> 3.7.1')
s.add_dependency('rack', '~> 2.0.0')
s.add_development_dependency('rake', '~> 12.0.0')
s.add_development_dependency('haml', '~> 5.0.1')
s.add_development_dependency('rack-test', '~> 0.6.3')
s.add_development_dependency('minitest', '~> 5.10.2')
s.add_development_dependency('mocha', '~> 1.2.1')
s.add_development_dependency('fakeweb', '~> 1.3.0')
s.add_development_dependency('simplecov', '~> 0.14.1')
end