mokkku 0.0.5 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9dd97441b73b6ba8795909cfc1115ff90ca6b63a16fe0a2e9ea00a3d75f44933
4
- data.tar.gz: 79041506c510a3c642c8cf0e9b0db97117df43f6b8a3e09257dcd8e6ded08721
3
+ metadata.gz: 6bc74f6aa066c531790d02be4d8b461978dd586b0a8c3f4275b0e74d2d12d5c7
4
+ data.tar.gz: 630c84be5245471760c79f245caacc240b733cded99c11db2761fb9655d70a12
5
5
  SHA512:
6
- metadata.gz: aa603c3e83ee372173558dfeabbb0969f9eb6cd45a313c447555e71961446fa97416c9a563f54bd3f810a7e5aa984881a419d01208e163a166b59dbcacf0d186
7
- data.tar.gz: 94d08b8ea75f384f78f473794a5862e614c53fa50388fee8b51bdc4283fdc869f81394e66d0873740fad795a007f119fb4231c6311d78c39c97e5848eee5a4ee
6
+ metadata.gz: f738b67f66cc8dac9d73104eda8f01152cd173ecba1787f8b6be2acecf9f9726552cdcf51d0ab91de36db91c925872e93e122bae5a39abecb7a0c47ebea9eabb
7
+ data.tar.gz: dd6b831f50e46b375dafa703eb165f6be1f4dd6097f50201f7fdef5ab40f6b7364b30371f94acd8a088afe615891ebc37079372508828d06ffc0500c817e5097
data/bin/mokkku CHANGED
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'mokkku'
5
5
  require 'optionparser'
6
+ require 'fileutils'
6
7
 
7
8
  options = {}
8
9
 
@@ -38,6 +39,7 @@ OptionParser.new do |opts|
38
39
  end
39
40
  end.parse!
40
41
 
42
+ base_dir = Dir.pwd
41
43
  # Load Rails project
42
44
  begin
43
45
  require File.join(base_dir, 'config', 'boot')
@@ -52,4 +54,6 @@ Rails.application.eager_load! if defined?(Rails)
52
54
  # Rails 6 support
53
55
  Zeitwerk::Loader.eager_load_all if defined?(Zeitwerk)
54
56
 
57
+ FileUtils.mkdir_p(File.join(base_dir, 'spec/mocks'))
58
+
55
59
  Mokkku::Cli::Runner.start(options)
@@ -3,7 +3,7 @@ module Mokkku
3
3
  module_function
4
4
 
5
5
  def to_s
6
- '0.0.5'
6
+ '0.0.7'
7
7
  end
8
8
  end
9
9
  end
data/lib/mokkku.rb CHANGED
@@ -5,12 +5,14 @@ module Mokkku
5
5
  extend Mokkku::Utils
6
6
 
7
7
  class << self
8
- attr_accessor :configuration
8
+ attr_writer :configuration
9
+
10
+ def configuration
11
+ @configuration ||= Configuration.new
12
+ end
9
13
  end
10
14
 
11
15
  def self.configure
12
- self.configuration ||= Configuration.new
13
-
14
16
  yield(configuration)
15
17
  end
16
18
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mokkku
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paweł Dąbrowski
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
124
  - !ruby/object:Gem::Version
125
125
  version: '0'
126
126
  requirements: []
127
- rubygems_version: 3.4.10
127
+ rubygems_version: 3.2.32
128
128
  signing_key:
129
129
  specification_version: 4
130
130
  summary: Generate mock data that is unique for your application