forked from pch/wellspring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wellspring.gemspec
35 lines (28 loc) · 1.06 KB
/
wellspring.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "wellspring/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "wellspring"
s.version = Wellspring::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Piotr Chmolowski"]
s.email = ["[email protected]"]
s.homepage = "http://openstudio.nrel.gov"
s.summary = "Summary of Wellspring."
s.description = "Description of Wellspring."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 4.2.4"
s.add_dependency "bcrypt", "~> 3.1.7"
s.add_dependency "sass-rails", "~> 5.0"
s.add_dependency "jquery-rails"
s.add_dependency "jquery-ui-rails"
s.add_dependency "font-awesome-rails"
s.add_dependency "autoprefixer-rails"
s.add_dependency "simple_form", "~>3.1.0"
s.add_dependency "pygments.rb"
s.add_dependency "redcarpet"
s.add_development_dependency "pg"
end