forked from runtimerevolution/survey
-
Notifications
You must be signed in to change notification settings - Fork 17
/
survey.gemspec
21 lines (19 loc) · 838 Bytes
/
survey.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "survey/version"
Gem::Specification.new do |s|
s.name = "questionnaire_engine"
s.version = Survey::VERSION
s.summary = %Q{Questionnaire is a user oriented tool that brings surveys into Rails applications.}
s.description = %Q{A rails gem to enable surveys in your application as easy as possible}
s.files = Dir["{app,lib,config}/**/*"] + ["MIT-LICENSE", "Rakefile", "Gemfile", "README.md"]
s.authors = "Dr-Click"
s.email = "ragab.mostafa@gmail.com"
s.homepage = "https://github.com/dr-click/Questionnaire"
s.licenses = "MIT"
s.require_paths = %w(lib)
s.add_dependency("rails")
s.add_development_dependency("mocha")
s.add_development_dependency("faker")
s.add_development_dependency("rake")
end