diff --git a/.gitignore b/.gitignore index 7c6925a..799f9e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,9 @@ .DS_Store .yardoc -rspec_results.html cert_data/test_ca/crl_number.txt coverage doc *.gem config.yaml log +Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..e661eef --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +gem "r509", :git => "git://github.com/reaperhulk/r509.git" +gemspec diff --git a/r509-ca-http.gemspec b/r509-ca-http.gemspec index 83af62f..7858ed9 100644 --- a/r509-ca-http.gemspec +++ b/r509-ca-http.gemspec @@ -9,9 +9,12 @@ spec = Gem::Specification.new do |s| s.summary = "A (relatively) simple certificate authority API written to work with r509" s.description = 'A CA API. What, you want more info?' s.add_dependency 'r509' + s.add_dependency 'sinatra' s.add_development_dependency 'rspec' - s.add_development_dependency 'syntax' s.add_development_dependency 'rack-test' + s.add_development_dependency 'rake' + s.add_development_dependency 'rcov' if RUBY_VERSION.split('.')[1].to_i == 8 + s.add_development_dependency 'simplecov' if RUBY_VERSION.split('.')[1].to_i == 9 s.author = "Sean Schulte" s.email = "sirsean@gmail.com" s.homepage = "http://vikinghammer.com"