cacert 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,9 @@
1
+ $LOAD_PATH << File.join(File.dirname(__FILE__), '..', 'lib')
2
+ require 'minitest/spec'
3
+ require 'minitest/autorun'
4
+ require 'cacert'
5
+
6
+ describe Cacert do
7
+ it('returns a filename') {Cacert.pem.must_match /cacert.pem/}
8
+ it('points to a file') {File.exist?(Cacert.pem).must_equal true}
9
+ end
metadata ADDED
@@ -0,0 +1,56 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cacert
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Justin Love
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-02-13 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: Packages a snapshort of the Curl cacert.pem
15
+ email:
16
+ - git@JustinLove.name
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - Gemfile
22
+ - Rakefile
23
+ - lib/cacert.rb
24
+ - lib/cacert/version.rb
25
+ - share/cacert.pem
26
+ - test/cacert_test.rb
27
+ homepage: https://github.com/JustinLove/cacert
28
+ licenses:
29
+ - MPL 1.1
30
+ - GPL 2.0
31
+ - LGPL 2.1
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ none: false
38
+ requirements:
39
+ - - ! '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubyforge_project:
50
+ rubygems_version: 1.8.15
51
+ signing_key:
52
+ specification_version: 3
53
+ summary: Packages the SSL certificate bundle from http://curl.haxx.se/docs/caextract.html
54
+ into a gem for use in Ruby applications.
55
+ test_files:
56
+ - test/cacert_test.rb