mystiko 0.1.1 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 5c51d35ea70b716ac0e8919fb8ae9edc5cad499e
4
- data.tar.gz: 2bffcef13afb643b6fc3de882f6fcaa1387113b0
2
+ SHA256:
3
+ metadata.gz: 6afc184987f0cfd437be250ea6c6f60d7a7712c7cba66abc91d6c5ab2773ca1c
4
+ data.tar.gz: 37b8ea25f4f08341d9f4861909c9819afc20f224c9abdb9cefbe1892bec0843c
5
5
  SHA512:
6
- metadata.gz: 746c0dd4aab8f1b00fefca0e244ebc0a1602d425683a8e33fb6952fe517c3867c949d7b847b09bf5041eb350860b238afe1b8c91a1b0c74b47bdf69984415e7b
7
- data.tar.gz: 34a1d022bb95bdc0ce0a87cdc5f8a8a39a4c1b6a4800d59abdda7176774faa7a6c57c91dd1e21f0575ee9b44f6d91bd9c79686255fdaab6601a5f334f7289b0c
6
+ metadata.gz: 359d8bc901feb64fe5e40d2f389f25df44651769defaf307670691fac6efb081711d5eaf37ddc25690fcdb3ec25c4a5752e9a5c93d8efa04da9a23ab86fcb5b2
7
+ data.tar.gz: 2b3687faf5fdf5aaa4cdc018f4b10591882d1d68886a71de500467a7901a0a247fb2bb2827fe3d0c09cc00c5a7f0d19742d179ac9a46b20275e87f4d08714410
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at peter.c.camilleri@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/README.md CHANGED
@@ -181,3 +181,14 @@ be accomplished.
181
181
 
182
182
  Go to the GitHub repository and raise an issue calling attention to some
183
183
  aspect that could use some TLC or a suggestion or an idea.
184
+
185
+ ## License
186
+
187
+ The gem is available as open source under the terms of the
188
+ [MIT License](./LICENSE.txt).
189
+
190
+ ## Code of Conduct
191
+
192
+ Everyone interacting in the fully_freeze project’s codebases, issue trackers,
193
+ chat rooms and mailing lists is expected to follow the
194
+ [code of conduct](./CODE_OF_CONDUCT.md).
data/lib/mystiko.rb CHANGED
@@ -13,6 +13,7 @@ class Mystiko
13
13
  #Set up an encryption object.
14
14
  def initialize
15
15
  @filler = Random.new
16
+ @fill_value = nil
16
17
  end
17
18
 
18
19
  #Get a decoy filler byte.
@@ -2,5 +2,5 @@
2
2
 
3
3
  class Mystiko
4
4
  #The version of this encryption library.
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.6".freeze
6
6
  end
data/mystiko.gemspec CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = "A simple data security system."
13
13
  spec.description = "An example of a simple data security system."
14
14
 
15
- spec.homepage = "http://teuthida-technologies.com/"
15
+ spec.homepage = "https://github.com/PeterCamilleri/mystiko"
16
16
  spec.license = "MIT"
17
17
 
18
18
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(tests)/}) }
@@ -20,13 +20,14 @@ Gem::Specification.new do |spec|
20
20
  spec.require_paths = ["lib"]
21
21
 
22
22
  spec.platform = Gem::Platform::RUBY
23
- spec.required_ruby_version = '>=2.1.0'
23
+ spec.required_ruby_version = '>= 2.1.0'
24
24
 
25
- spec.add_runtime_dependency 'fibonacci_rng', ">= 1.1.1"
26
- spec.add_runtime_dependency 'composite_rng', ">= 0.1.0"
25
+ spec.add_runtime_dependency 'fibonacci_rng', "~> 2.0"
26
+ spec.add_runtime_dependency 'composite_rng', "~> 0.1"
27
+
28
+ spec.add_development_dependency "rake", "~> 12.0"
29
+ spec.add_development_dependency "bundler", ">= 2.1.0"
30
+ spec.add_development_dependency 'minitest', "~> 5.7"
31
+ spec.add_development_dependency 'rdoc', "~> 5.0"
27
32
 
28
- spec.add_development_dependency "bundler", "~> 1.11"
29
- spec.add_development_dependency "rake", "~> 10.0"
30
- spec.add_development_dependency 'minitest_visible', ">= 0.1.0"
31
- spec.add_development_dependency 'mini_readline', ">= 0.4.8"
32
33
  end
metadata CHANGED
@@ -1,99 +1,99 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mystiko
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Camilleri
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-30 00:00:00.000000000 Z
11
+ date: 2021-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fibonacci_rng
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.1.1
19
+ version: '2.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.1.1
26
+ version: '2.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: composite_rng
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.0
33
+ version: '0.1'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.1.0
40
+ version: '0.1'
41
41
  - !ruby/object:Gem::Dependency
42
- name: bundler
42
+ name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '1.11'
47
+ version: '12.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '1.11'
54
+ version: '12.0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: rake
56
+ name: bundler
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '10.0'
61
+ version: 2.1.0
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '10.0'
68
+ version: 2.1.0
69
69
  - !ruby/object:Gem::Dependency
70
- name: minitest_visible
70
+ name: minitest
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ">="
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.1.0
75
+ version: '5.7'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ">="
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.1.0
82
+ version: '5.7'
83
83
  - !ruby/object:Gem::Dependency
84
- name: mini_readline
84
+ name: rdoc
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ">="
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 0.4.8
89
+ version: '5.0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ">="
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 0.4.8
96
+ version: '5.0'
97
97
  description: An example of a simple data security system.
98
98
  email:
99
99
  - peter.c.camilleri@gmail.com
@@ -103,6 +103,7 @@ extensions: []
103
103
  extra_rdoc_files: []
104
104
  files:
105
105
  - ".gitignore"
106
+ - CODE_OF_CONDUCT.md
106
107
  - Gemfile
107
108
  - LICENSE.txt
108
109
  - README.md
@@ -121,7 +122,7 @@ files:
121
122
  - mystiko.reek
122
123
  - rakefile.rb
123
124
  - reek.txt
124
- homepage: http://teuthida-technologies.com/
125
+ homepage: https://github.com/PeterCamilleri/mystiko
125
126
  licenses:
126
127
  - MIT
127
128
  metadata: {}
@@ -140,10 +141,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
141
  - !ruby/object:Gem::Version
141
142
  version: '0'
142
143
  requirements: []
143
- rubyforge_project:
144
- rubygems_version: 2.2.2
144
+ rubygems_version: 3.2.17
145
145
  signing_key:
146
146
  specification_version: 4
147
147
  summary: A simple data security system.
148
148
  test_files: []
149
- has_rdoc: