Created
January 14, 2011 22:25
-
-
Save JoshMcKin/780398 to your computer and use it in GitHub Desktop.
Engine gemspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- encoding: utf-8 -*- | |
$:.push File.expand_path("../lib", __FILE__) | |
require "my_engine/version" | |
Gem::Specification.new do |s| | |
s.name = "msp_webpay" | |
s.version = MyEngine::VERSION | |
s.platform = Gem::Platform::RUBY | |
s.authors = ["Joshua T. Mckinney "] | |
s.email = ["not a email"] | |
s.homepage = "" | |
s.summary = %q{app} | |
s.description = %q{app} | |
s.add_runtime_dependency "rails", "3.0.3" | |
s.add_runtime_dependency 'thin' | |
s.add_runtime_dependency 'eventmachine' | |
s.add_runtime_dependency 'dalli' | |
s.add_runtime_dependency "simple_model", '0.1.5' | |
s.add_runtime_dependency "simple_record" | |
s.add_runtime_dependency "typhoeus" | |
s.add_runtime_dependency "nokogiri" | |
s.add_development_dependency "mocha" | |
s.add_development_dependency "autotest" | |
s.add_development_dependency "rspec-rails", "~> 2.4" | |
s.add_development_dependency 'factory_girl_rails' | |
s.add_development_dependency "ruby-debug19" | |
s.files = `git ls-files`.split("\n") | |
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | |
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | |
s.require_paths = ["lib"] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment