novu 0.1.0 → 1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0fc42d2af18f6aaf2fec816e562d11e87564ed50b2c553536c6a04acbf91fc57
4
- data.tar.gz: efac155226cf82453269bf17f5a01ecbe202914eb4291329d044df7f4d3f6133
3
+ metadata.gz: 3579a3791831450fecdf80f372bbae150bc2170738786009087bed40da0173a2
4
+ data.tar.gz: 6a6b9250d0ecc25ec3445408972564e6b9c25736bdf45e173c3159d500244c5e
5
5
  SHA512:
6
- metadata.gz: 3d97dbeb4725243fb3437208fcb825ea8fd5dcc927bbfc5b11a02dfb0f4eeb054f69a8018da3f1aba39538db92fdc450ccc65c2375ca76c3ed453a428e04fe10
7
- data.tar.gz: c1a0e10ac3c364ade53a4d93e33e9046a37b6a9244e9d35a85f502c6df4c3c47d22e80a79c70a8625c6805ce0c3f62a98f761789a221ab4cdd1a90bacf54ee89
6
+ metadata.gz: 8025a85e201b29fd21903c8ca6ca6c952e32a17ac5f07a696e8f80a5a652c0d9da0026ea2b40885c48ba9c53bfbc92c402487d2b14deeaff0d42546baeaaef7c
7
+ data.tar.gz: e432287331101e7f04abb8ebb094a78f469a244f6e9ae1ea3c6935c5e6000ec10595822c2d8dbc6efa473d969acbb31cf714e6d43469adf5b4702e5180ee092e
data/.rubocop.yml CHANGED
@@ -11,3 +11,9 @@ Style/StringLiteralsInInterpolation:
11
11
 
12
12
  Layout/LineLength:
13
13
  Max: 120
14
+
15
+ Metrics/BlockLength:
16
+ Exclude:
17
+ - 'Rakefile'
18
+ - '**/*.rake'
19
+ - 'spec/**/*.rb'
data/Gemfile CHANGED
@@ -14,4 +14,4 @@ end
14
14
 
15
15
  gem "rubocop", "~> 1.21"
16
16
 
17
- gem 'pry-debugger-jruby'
17
+ # gem 'pry-debugger-jruby'
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- novu (0.1.0)
5
- activesupport
6
- httparty
4
+ novu (1.0.0)
5
+ activesupport (= 6.1.7.2)
6
+ httparty (~> 0.21)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -17,33 +17,24 @@ GEM
17
17
  addressable (2.8.1)
18
18
  public_suffix (>= 2.0.2, < 6.0)
19
19
  ast (2.4.2)
20
- coderay (1.1.3)
21
20
  concurrent-ruby (1.2.2)
22
21
  crack (0.4.5)
23
22
  rexml
24
23
  diff-lcs (1.5.0)
25
- ffi (1.15.5-java)
26
24
  hashdiff (1.0.1)
27
25
  httparty (0.21.0)
28
26
  mini_mime (>= 1.0.0)
29
27
  multi_xml (>= 0.5.2)
30
28
  i18n (1.12.0)
31
29
  concurrent-ruby (~> 1.0)
30
+ json (2.6.3)
32
31
  json (2.6.3-java)
33
- method_source (1.0.0)
34
32
  mini_mime (1.1.2)
35
33
  minitest (5.17.0)
36
34
  multi_xml (0.6.0)
37
35
  parallel (1.22.1)
38
36
  parser (3.2.1.0)
39
37
  ast (~> 2.4.1)
40
- pry (0.14.2-java)
41
- coderay (~> 1.1)
42
- method_source (~> 1.0)
43
- spoon (~> 0.0)
44
- pry-debugger-jruby (2.1.1-java)
45
- pry (>= 0.13, < 0.15)
46
- ruby-debug-base (>= 0.10.4, < 0.12)
47
38
  public_suffix (5.0.1)
48
39
  rainbow (3.1.1)
49
40
  rake (13.0.6)
@@ -74,10 +65,7 @@ GEM
74
65
  unicode-display_width (>= 2.4.0, < 3.0)
75
66
  rubocop-ast (1.27.0)
76
67
  parser (>= 3.2.1.0)
77
- ruby-debug-base (0.11.0-java)
78
68
  ruby-progressbar (1.11.0)
79
- spoon (0.0.6)
80
- ffi
81
69
  tzinfo (2.0.6)
82
70
  concurrent-ruby (~> 1.0)
83
71
  unicode-display_width (2.4.2)
@@ -88,11 +76,14 @@ GEM
88
76
  zeitwerk (2.6.7)
89
77
 
90
78
  PLATFORMS
79
+ ruby
80
+ universal-java-11
91
81
  universal-java-17
82
+ x86_64-darwin-21
83
+ x86_64-linux
92
84
 
93
85
  DEPENDENCIES
94
86
  novu!
95
- pry-debugger-jruby
96
87
  rake (~> 13.0)
97
88
  rspec
98
89
  rubocop (~> 1.21)