forked from bespokepost/questionable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestionable.gemspec
More file actions
33 lines (27 loc) · 1.36 KB
/
questionable.gemspec
File metadata and controls
33 lines (27 loc) · 1.36 KB
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "questionable/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "questionable_surveys"
s.version = Questionable::VERSION
s.authors = ["Nick Urban, Dorian Marié, Jared Hales"]
s.email = ["nick@nickurban.com, dorian@bespokepost.com, jared@bespokepost.com"]
s.license = 'MIT'
s.homepage = "https://github.com/bespokepost/questionable"
s.summary = "Rails engine that programatically generates surveys."
s.description = "Makes it easy to add and edit forms programatically, " +
"specifying select, radio, checkbox, or string input, " +
"and recordings users' answers. " +
"Questions can be associated with specific objects or with string labels. " +
"A form template and controller are including for displaying questions and recording answers, " +
"and ActiveAdmin is supported for editing the questions and options on the back-end."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.add_dependency "rails", ">= 3.2.22"
s.add_dependency 'haml'
s.add_dependency 'formtastic'
s.add_dependency 'stringex'
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency 'factory_girl_rails'
end