intranet-pictures 0.0.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0ab4f949290d03cad1457928b191456ffd1a7ce7cb2469332ce025978d9a4187
4
+ data.tar.gz: 046e7c70a389c5b999b1817dd0056a28103c18de56ec888a8248e89d39415ad5
5
+ SHA512:
6
+ metadata.gz: 32bf9cc089a52bc37e47ff5695136ae9ae9ed0d17cabe73966724f38716f504fca3aab26966848aac8ddf028476ad30bf6eee4451ca0d394c1293f642c2ff4ce
7
+ data.tar.gz: a5910897b5b78444caa328559ca5e594b1fa2d30ef41c8da346177c433069a8749309cca515fbf56ed7adbb177afbdbacf80cae2a1f4fea78576cbd74b06b5cf
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ # The main Intranet namespace.
4
+ module Intranet
5
+ # The Pictures gallery module for the Intranet.
6
+ module Pictures
7
+ # The name of the gem.
8
+ NAME = 'intranet-pictures'
9
+
10
+ # The version of the gem, according to semantic versionning.
11
+ VERSION = '0.0.0'
12
+
13
+ # The URL of the gem homepage.
14
+ HOMEPAGE_URL = 'https://rubygems.org/gems/intranet-pictures'
15
+
16
+ # The URL of the gem source code.
17
+ SOURCES_URL = 'https://bitbucket.org/ebling-mis/intranet-pictures'
18
+ end
19
+ end
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is automatically loaded in each *_spec.rb file, so keep it light!
4
+
5
+ RSpec.configure do |config|
6
+ config.expect_with :rspec do |expectations|
7
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
8
+ end
9
+
10
+ config.mock_with :rspec do |mocks|
11
+ mocks.verify_partial_doubles = true
12
+ end
13
+
14
+ config.shared_context_metadata_behavior = :apply_to_host_groups
15
+
16
+ config.disable_monkey_patching!
17
+
18
+ # config.warnings = true
19
+
20
+ # Use the documentation formatter when RSpec is launched with one file only
21
+ config.default_formatter = 'doc' if config.files_to_run.one?
22
+
23
+ # Print the 10 slowest examples and example groups at the
24
+ # end of the spec run, to help surface which specs are running
25
+ # particularly slow.
26
+ # config.profile_examples = 10
27
+
28
+ # Run specs in random order to surface order dependencies. If you find an
29
+ # order dependency and want to debug it, you can fix the order by providing
30
+ # the seed, which is printed after each run.
31
+ # --seed 1234
32
+ config.order = :random
33
+
34
+ # Seed global randomization in this process using the `--seed` CLI option.
35
+ # Setting this allows you to use `--seed` to deterministically reproduce
36
+ # test failures related to randomization by passing the same `--seed` value
37
+ # as the one that triggered the failure.
38
+ Kernel.srand config.seed
39
+
40
+ # Add lib/ directory to load path
41
+ $LOAD_PATH << File.absolute_path(File.join('..', 'lib'), __dir__)
42
+
43
+ # Load and start SimpleCov to gather code coverage information
44
+ unless config.files_to_run.one?
45
+ require 'simplecov'
46
+ SimpleCov.add_filter 'spec' # exclude 'spec' folder from coverage
47
+ SimpleCov.start
48
+ end
49
+ end
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: intranet-pictures
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Ebling Mis
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-06-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: intranet-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 2.1.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '2.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 2.1.0
33
+ - !ruby/object:Gem::Dependency
34
+ name: rake
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rspec
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rubocop
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 0.81.0
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: 0.81.0
75
+ - !ruby/object:Gem::Dependency
76
+ name: simplecov
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ - !ruby/object:Gem::Dependency
90
+ name: yard
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ description:
104
+ email: ebling.mis@protonmail.com
105
+ executables: []
106
+ extensions: []
107
+ extra_rdoc_files: []
108
+ files:
109
+ - lib/intranet/pictures/version.rb
110
+ - spec/spec_helper.rb
111
+ homepage: https://rubygems.org/gems/intranet-pictures
112
+ licenses:
113
+ - MIT
114
+ metadata:
115
+ source_code_uri: https://bitbucket.org/ebling-mis/intranet-pictures
116
+ post_install_message:
117
+ rdoc_options: []
118
+ require_paths:
119
+ - lib
120
+ required_ruby_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '2.3'
125
+ required_rubygems_version: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - ">="
128
+ - !ruby/object:Gem::Version
129
+ version: '0'
130
+ requirements: []
131
+ rubyforge_project:
132
+ rubygems_version: 2.7.6.2
133
+ signing_key:
134
+ specification_version: 4
135
+ summary: Pictures gallery module for the intranet.
136
+ test_files: []