lorca 0.3.0 → 0.3.3

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
2
  SHA256:
3
- metadata.gz: ab5b9ef8040a51c71e968398dc37c1e656cfb50246eb5d576b3565959f5a2f1c
4
- data.tar.gz: 86fd64feae9c99878f0d1053f78a1ee2dd399831946f2436b9d4d29f8c590a0a
3
+ metadata.gz: 282095acf11f395d43ce90b273e0feef6bb9c13f171839d7eaaded6e83344505
4
+ data.tar.gz: f3f0c756ba1579a93990467812e3a3aa5a1525af0f2e81fe631acf6106db51f3
5
5
  SHA512:
6
- metadata.gz: ef2adcc3d3fc5c3506e31132aaefe545bd79f4f504be6bab1434d5b15ad73a253fdc3caf37b8697d1a563b520a703a1245467078f5bb70ad673d18ffc78bbc63
7
- data.tar.gz: df0ff349f468f3a310842f5ed37546d5c366138b68c43aafecd2c3ed4010fa22a9d76be5f40023a98270f76625d544f97b01ca0906fbe3a4bef50a30520821dd
6
+ metadata.gz: 3e04e6708ea591617a1a1713b1e9a692dc6d592d819aee3d511fec0b70c29377f1c0dbfb1ba9f283ac0b9d4c8a2d816807c1479637d703dc3b812b3070dca9f6
7
+ data.tar.gz: 0663d6bf02d0d9d0f7ac025216da27348b129fd09b19565fa8c00e9445a148f21dae707a6bc13ff3fc34010024e522dfafdf3fd6ea8f2851f03636066422fea9
@@ -2,6 +2,17 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.3.3]
6
+
7
+ ### Fixed
8
+
9
+ - Path to dictionary file.
10
+ - Examples in the documentation.
11
+
12
+ ### Added
13
+
14
+ - CI pipeline status to ReadMe.md
15
+
5
16
  ## [0.3.0]
6
17
 
7
18
  ### Security
data/ReadMe.md CHANGED
@@ -6,6 +6,8 @@ Lorca generates passphrases based on the algorithm originally described in
6
6
  [EFF Dice-Generated Passphrases](https://www.eff.org/dice).
7
7
  It uses [EFF's long word list](https://www.eff.org/files/2016/07/18/eff_large_wordlist.txt).
8
8
 
9
+ [![pipeline status](https://gitlab.com/_rem/lorca/badges/master/pipeline.svg)](https://gitlab.com/_rem/lorca/commits/master)
10
+
9
11
  ## System Requirements
10
12
 
11
13
  - *nix OS.
@@ -46,7 +46,6 @@ class Lorca
46
46
  # so users can modify its settings.
47
47
  #--
48
48
  # don't load from load_path; security over convenience
49
- # rename add
50
49
  #++
51
50
  def add expansion, **stns, &block
52
51
  expansion.load_dependencies(self, **stns, &block) if expansion.respond_to?(:load_dependencies)
@@ -12,7 +12,7 @@ class Lorca
12
12
  # included plugins.
13
13
  module LorcaPlugin
14
14
  # Run Lorca with +options+ enabled.
15
- # lorca = Lorca.plugin(Lorca::CLI).new
15
+ # lorca = Lorca.add(Lorca::CLI).new
16
16
  # lorca.run
17
17
  def run options=$argv
18
18
  cli_parse options
@@ -18,7 +18,7 @@ class Lorca
18
18
  # vocabulary.
19
19
  DICE = 5.freeze
20
20
  # The default vocabulary's database path.
21
- VOCABULARY = "./lib/lorca/expansions/phrases/eff_large_wordlist"
21
+ VOCABULARY = "#{__dir__}/phrases/eff_large_wordlist"
22
22
 
23
23
  # Configure the Lorca::Phrases expansion upon loading.
24
24
  #
@@ -9,7 +9,7 @@ class Lorca
9
9
  LorcaMinorVersion = 3
10
10
 
11
11
  # Patch version. Updated only for bug fixes from the last feature release.
12
- LorcaPatchVersion = 0
12
+ LorcaPatchVersion = 3
13
13
 
14
14
  # Full version as a string.
15
15
  LorcaVersion = "#{LorcaMajorVersion}.#{LorcaMinorVersion}.#{LorcaPatchVersion}"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lorca
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - René Maya
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-04 00:00:00.000000000 Z
11
+ date: 2018-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: clipboard
@@ -232,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
232
232
  version: '0'
233
233
  requirements: []
234
234
  rubyforge_project:
235
- rubygems_version: 2.7.6
235
+ rubygems_version: 2.7.7
236
236
  signing_key:
237
237
  specification_version: 4
238
238
  summary: Passphrase, and password generator