dry-monitor 0.0.2 → 0.0.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
  SHA1:
3
- metadata.gz: 6454d8e5127c145f85a2f9e35dc21e7a84bd6037
4
- data.tar.gz: c3f01289d91fa96c7aa3316b866b74fbd2524ccf
3
+ metadata.gz: 2e25e7f449ab08998c06d514cb55595116e776f6
4
+ data.tar.gz: e8d85581444bcadcfa5a1217d97ce7563c5ac4e2
5
5
  SHA512:
6
- metadata.gz: 2ac158bd1e1b591de60c7e8afa817ea79a2ea437e5776cf8290fbdb12d5ac2c1309ee48e72078f579c702b0f288fdcac19de152fac8ccec215f369930381bfff
7
- data.tar.gz: 4e52db2286bdb3cb5e94b412b767c7ea2d88f0eb9f3d77f9e17fe359e89653f2d917dd9bd1290f591fe0db45accd367dbf8f6d5d8190f7d1fe0964e373c5e896
6
+ metadata.gz: 50186476dfcdd3ebc7eff4c16379a0439aa7c8b0d6334d68ae772cc6c97c6aca87ead6d8e298f92f9e12a5ee264b5cfca7afb084c97e4d99e04560d6e0a4a58a
7
+ data.tar.gz: 64b53c3ee78d4b2d7d18286f0e4504f20d09bd6fcfcb12cdee9f3e5fa94a8296fa7e3929450e2a1c7c37987d268d5a0ef09ce18e75400c66c9340027350488dd
@@ -1,3 +1,10 @@
1
+ # v0.0.3 2017-08-28
2
+
3
+ ### Changed
4
+
5
+ * Update default theme setting for compatibility with latest version of rouge (alexandru-calinoiu)
6
+ * Require latest version of rouge gem (timriley)
7
+
1
8
  # v0.0.2 2017-02-02
2
9
 
3
10
  ### Added
@@ -0,0 +1,29 @@
1
+ # Issue Guidelines
2
+
3
+ ## Reporting bugs
4
+
5
+ If you found a bug, report an issue and describe what's the expected behavior versus what actually happens. If the bug causes a crash, attach a full backtrace. If possible, a reproduction script showing the problem is highly appreciated.
6
+
7
+ ## Reporting feature requests
8
+
9
+ Report a feature request **only after discussing it first on [discuss.dry-rb.org](https://discuss.dry-rb.org)** where it was accepted. Please provide a concise description of the feature, don't link to a discussion thread, and instead summarize what was discussed.
10
+
11
+ ## Reporting questions, support requests, ideas, concerns etc.
12
+
13
+ **PLEASE DON'T** - use [discuss.dry-rb.org](http://discuss.dry-rb.org) instead.
14
+
15
+ # Pull Request Guidelines
16
+
17
+ A Pull Request will only be accepted if it addresses a specific issue that was reported previously, or fixes typos, mistakes in documentation etc.
18
+
19
+ Other requirements:
20
+
21
+ 1) Do not open a pull request if you can't provide tests along with it. If you have problems writing tests, ask for help in the related issue.
22
+ 2) Follow the style conventions of the surrounding code. In most cases, this is standard ruby style.
23
+ 3) Add API documentation if it's a new feature
24
+ 4) Update API documentation if it changes an existing feature
25
+ 5) Bonus points for sending a PR to [github.com/dry-rb/dry-rb.org](github.com/dry-rb/dry-rb.org) which updates user documentation and guides
26
+
27
+ # Asking for help
28
+
29
+ If these guidelines aren't helpful, and you're stuck, please post a message on [discuss.dry-rb.org](https://discuss.dry-rb.org).
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
16
16
  spec.require_paths = ['lib']
17
17
 
18
- spec.add_runtime_dependency 'rouge', '~> 2.0'
18
+ spec.add_runtime_dependency 'rouge', '~> 2.0', '>= 2.2.1'
19
19
  spec.add_runtime_dependency 'dry-equalizer', '~> 0.2'
20
20
  spec.add_runtime_dependency 'dry-configurable', '~> 0.5'
21
21
 
@@ -7,7 +7,7 @@ module Dry
7
7
  class Logger
8
8
  extend Dry::Configurable
9
9
 
10
- setting :theme, Rouge::Themes::Gruvbox
10
+ setting :theme, Rouge::Themes::Gruvbox.new
11
11
  setting :colorize, true
12
12
  setting :message_template, %( Loaded %s in %sms %s).freeze
13
13
 
@@ -1,5 +1,5 @@
1
1
  module Dry
2
2
  module Monitor
3
- VERSION = '0.0.2'.freeze
3
+ VERSION = '0.0.3'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-monitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Solnica
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-02 00:00:00.000000000 Z
11
+ date: 2017-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rouge
@@ -17,6 +17,9 @@ dependencies:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '2.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 2.2.1
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -24,6 +27,9 @@ dependencies:
24
27
  - - "~>"
25
28
  - !ruby/object:Gem::Version
26
29
  version: '2.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 2.2.1
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: dry-equalizer
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -107,6 +113,7 @@ files:
107
113
  - ".rubocop_todo.yml"
108
114
  - ".travis.yml"
109
115
  - CHANGELOG.md
116
+ - CONTRIBUTING.md
110
117
  - Gemfile
111
118
  - LICENSE
112
119
  - README.md
@@ -147,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
154
  version: '0'
148
155
  requirements: []
149
156
  rubyforge_project:
150
- rubygems_version: 2.6.9
157
+ rubygems_version: 2.6.11
151
158
  signing_key:
152
159
  specification_version: 4
153
160
  summary: Monitoring and instrumentation APIs