File tree Expand file tree Collapse file tree 5 files changed +29
-12
lines changed Expand file tree Collapse file tree 5 files changed +29
-12
lines changed Original file line number Diff line number Diff line change
1
+ script : " bundle exec rake test"
2
+
3
+ rvm :
4
+ - ruby-head
5
+
6
+ matrix :
7
+ allow_failures :
8
+ - rvm : ruby-head
9
+ fast_finish : true
Original file line number Diff line number Diff line change 1
1
# Openssl
2
2
3
- TODO: Write a gem description
3
+ * [ ![ Build Status] ( https://travis-ci.org/zzak/openssl.svg?branch=master )] ( https://travis-ci.org/zzak/openssl )
4
+
5
+ OpenSSL provides SSL, TLS and general purpose cryptography. It wraps the OpenSSL library.
4
6
5
7
## Installation
6
8
@@ -24,8 +26,17 @@ TODO: Write usage instructions here
24
26
25
27
## Contributing
26
28
27
- 1 . Fork it ( https://github.com/[my-github-username ] /openssl/fork )
29
+ 1 . Fork it ( https://github.com/zzak /openssl/fork )
28
30
2 . Create your feature branch (` git checkout -b my-new-feature ` )
29
31
3 . Commit your changes (` git commit -am 'Add some feature' ` )
30
32
4 . Push to the branch (` git push origin my-new-feature ` )
31
33
5 . Create a new Pull Request
34
+
35
+ ## Updating from source
36
+
37
+ ```
38
+ ~/code/openssl => cp -R ~/src/ruby/ext/openssl/*.{c,h} ext/openssl/.
39
+ ~/code/openssl => cp -R ~/src/ruby/ext/openssl/deprecation.rb ext/openssl/deprecation.rb
40
+ ~/code/openssl => cp -R ~/src/ruby/ext/openssl/extconf.rb ext/openssl/extconf.rb
41
+ ~/code/openssl => cp -R ~/src/ruby/ext/openssl/lib/* lib/.
42
+ ```
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ module RFC2253DN
70
70
HexPair = /#{ HexChar } #{ HexChar } /
71
71
HexString = /#{ HexPair } +/
72
72
Pair = /\\ (?:[#{ Special } ]|\\ |"|#{ HexPair } )/
73
- StringChar = /[^#{ Special } \\ " ]/
73
+ StringChar = /[^\\ " #{ Special } ]/
74
74
QuoteChar = /[^\\ "]/
75
75
AttributeType = /[a-zA-Z][0-9a-zA-Z]*|[0-9]+(?:\. [0-9]+)*/
76
76
AttributeValue = /
Original file line number Diff line number Diff line change 1
1
# coding: utf-8
2
2
lib = File . expand_path ( '../lib' , __FILE__ )
3
3
$LOAD_PATH. unshift ( lib ) unless $LOAD_PATH. include? ( lib )
4
- require 'openssl/version '
4
+ require 'openssl'
5
5
6
6
Gem ::Specification . new do |spec |
7
7
spec . name = "openssl"
8
8
spec . version = OpenSSL ::VERSION
9
- spec . authors = [ "SHIBATA Hiroshi" ]
10
- spec . email = [ "hsbt @ruby-lang.org" ]
11
- spec . summary = %q{Write a short summary. Required .}
12
- spec . description = %q{Write a longer description. Optional .}
13
- spec . homepage = ""
9
+ spec . authors = [ "Martin Bosslet" , " SHIBATA Hiroshi" , "Zachary Scott "]
10
+ spec . email = [ "ruby-core @ruby-lang.org" ]
11
+ spec . summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography .}
12
+ spec . description = %q{It wraps the OpenSSL library .}
13
+ spec . homepage = "http://www.ruby-lang.org/ "
14
14
15
15
spec . files = `git ls-files -z` . split ( "\x0 " )
16
16
spec . executables = spec . files . grep ( %r{^bin/} ) { |f | File . basename ( f ) }
You can’t perform that action at this time.
0 commit comments