-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved Documentation. Added readme badges.
- Loading branch information
Lars Schmertmann
committed
Apr 3, 2014
1 parent
bb4b74d
commit ea35a42
Showing
15 changed files
with
104 additions
and
53 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
*.gem | ||
*.rbc | ||
.bundle | ||
.config | ||
coverage | ||
InstalledFiles | ||
lib/bundler/man | ||
pkg | ||
rdoc | ||
spec/reports | ||
test/tmp | ||
test/version_tmp | ||
tmp | ||
|
||
# YARD artifacts | ||
.yardoc | ||
_yardoc | ||
doc/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
|
||
ClassLength: | ||
Max: 500 | ||
Max: 256 | ||
|
||
MethodLength: | ||
Max: 64 | ||
Max: 32 | ||
|
||
CyclomaticComplexity: | ||
Max: 32 | ||
Max: 8 | ||
|
||
BlockComments: | ||
Documentation: | ||
Enabled: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
language: ruby | ||
rvm: | ||
- 2.1.0 | ||
script: | ||
- "bundle exec rake" | ||
- "bundle exec rake test" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rake', '>=10.2.2' | ||
gem 'rdoc', '>=4.1.1' | ||
gem 'yard', '>=0.8.7.3' | ||
gem 'rubocop', '>=0.18.1' | ||
gem 'coveralls', '>=00.7.0' |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 Lars Schmertmann | ||
Copyright (c) 2014, Lars Schmertmann <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module OpenSSL | ||
class CCM | ||
VERSION = '1.1.0' | ||
VERSION = '1.1.1' | ||
end | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,18 +12,20 @@ Gem::Specification.new do |s| | |
s.email = ['[email protected]'] | ||
s.summary = 'RFC 3610 - CCM' | ||
s.description = 'Ruby Gem for RFC 3610 - Counter with CBC-MAC (CCM)' | ||
s.homepage = '' | ||
s.homepage = 'https://github.com/smalllars/openssl-ccm' | ||
s.license = 'MIT' | ||
s.post_install_message = "Thanks for installing!" | ||
|
||
s.files = Dir.glob('lib/openssl/*.rb') + | ||
Dir.glob("lib/openssl/ccm/*.rb") + | ||
['Gemfile', 'Rakefile'] | ||
['Gemfile', 'Rakefile', '.rubocop.yml', '.yardopts'] | ||
s.test_files = Dir.glob('test/test_*.rb') + Dir.glob('test/data_*') | ||
|
||
s.add_development_dependency 'rake', '~> 10.2', '>= 10.2.2' | ||
s.add_development_dependency 'rdoc', '~> 4.1', '>= 4.1.1' | ||
s.add_development_dependency 'yard', '~> 0.8', '>= 0.8.7.3' | ||
s.add_development_dependency 'rubocop', '~> 0.18', '>= 0.18.1' | ||
s.add_development_dependency 'coveralls', '~> 0.7', '>= 0.7.0' | ||
|
||
s.rdoc_options += ['-x', 'test/data_*'] | ||
s.extra_rdoc_files = ['README.md', 'LICENSE'] | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
This file was deleted.
Oops, something went wrong.