23 lines
		
	
	
		
			651 B
		
	
	
	
		
			Ruby
		
	
	
	
		
		
			
		
	
	
			23 lines
		
	
	
		
			651 B
		
	
	
	
		
			Ruby
		
	
	
	
|  | $:.push File.expand_path("../lib", __FILE__) | ||
|  | 
 | ||
|  | # Maintain your gem's version: | ||
|  | require "survey/version" | ||
|  | 
 | ||
|  | # Describe your gem and declare its dependencies: | ||
|  | Gem::Specification.new do |s| | ||
|  |   s.name        = "survey" | ||
|  |   s.version     = Survey::VERSION | ||
|  |   s.authors     = ["TODO: Your name"] | ||
|  |   s.email       = ["TODO: Your email"] | ||
|  |   s.homepage    = "TODO" | ||
|  |   s.summary     = "TODO: Summary of Survey." | ||
|  |   s.description = "TODO: Description of Survey." | ||
|  | 
 | ||
|  |   s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"] | ||
|  |   s.test_files = Dir["test/**/*"] | ||
|  | 
 | ||
|  |   s.add_dependency "rails", "~> 3.2.12" | ||
|  | 
 | ||
|  |   s.add_development_dependency "sqlite3" | ||
|  | end |