File: engine_project.gemspec

package info (click to toggle)
ruby-sass-rails 4.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,216 kB
  • ctags: 123
  • sloc: ruby: 853; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 734 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)

# Maintain your gem's version:
require "engine_project/version"

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name        = "engine_project"
  s.version     = EngineProject::VERSION
  s.authors     = ["TODO: Your name"]
  s.email       = ["TODO: Your email"]
  s.homepage    = "TODO"
  s.summary     = "TODO: Summary of EngineProject."
  s.description = "TODO: Description of EngineProject."

  s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
  s.test_files = Dir["test/**/*"]

  s.add_dependency "rails", ">= 4.0.0.beta", "< 5.0"
  # s.add_dependency "jquery-rails"

  s.add_development_dependency "sqlite3"
end