redmine_airbrake_backend 0.4.2 → 0.4.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: b1cdd4e2ac42fd9fbb0eb9f58d470ece482d7d12
4
- data.tar.gz: 4b5911abdb103c30b570c0fbd83254e041899a0f
3
+ metadata.gz: 02aaf16472df5dc61443a9bc2ee67c615f8ad9d3
4
+ data.tar.gz: a90521ed091002dced77aa89e314dc087341d652
5
5
  SHA512:
6
- metadata.gz: fcc9c6090efc958f1a404a312838295506a0962ad20d7624963cb32ced3eccbd5e29a95d5fe89c835a9dc0a7cce1e630f6baab103299dad7c71e25299b616f7e
7
- data.tar.gz: 8db8b669c1c677e3b8c21cb24ebfa379177af965e29fb4209f7afa936cd92831cf1060cdfb1b3d422d8db37b1c12f846c1b3de00e2d823ae823feded26daa140
6
+ metadata.gz: 677eb39c75a8af444887c31f2fa35ae566fd1ff4d14b4116f841ccb017e294905d309fa28731cb7728847071d467b71be7d502d0a32dddd8dcbe6ac8a1ef324f
7
+ data.tar.gz: b905d8b8722ebc99be7a0539ace444c4d6ce6be46fc84659664fa45d43d6b4c39c22117147f0310d52b3081ca7848135daf16f3fd13946ccc081436c31df5f70
@@ -52,11 +52,8 @@ module RedmineAirbrakeBackend
52
52
 
53
53
  def self.convert_element(elem)
54
54
  return nil if elem.nil?
55
-
56
55
  return elem.children.first.inner_text if !elem.children.nil? && elem.children.count == 1 && elem.children.first.is_a?(Hpricot::Text)
57
-
58
56
  return elem.attributes.to_hash.symbolize_keys if elem.children.nil?
59
-
60
57
  return convert_var_elements(elem.children) if elem.children.count == elem.children.select{|c| c.name == 'var'}.count
61
58
 
62
59
  h = {}
@@ -1,3 +1,3 @@
1
1
  module RedmineAirbrakeBackend
2
- VERSION = '0.4.2'
2
+ VERSION = '0.4.3'
3
3
  end
@@ -1,6 +1,6 @@
1
1
  # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
2
+ $:.push File.expand_path('../lib', __FILE__)
3
+
4
4
  require 'redmine_airbrake_backend/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
@@ -14,7 +14,6 @@ Gem::Specification.new do |spec|
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
18
  spec.require_paths = ['lib']
20
19
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redmine_airbrake_backend
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Schwab
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-06 00:00:00.000000000 Z
11
+ date: 2014-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -83,14 +83,12 @@ dependencies:
83
83
  description: Plugin which adds Airbrake support to Redmine
84
84
  email:
85
85
  - me@ydkn.de
86
- executables:
87
- - rails
86
+ executables: []
88
87
  extensions: []
89
88
  extra_rdoc_files: []
90
89
  files:
91
90
  - ".gitignore"
92
91
  - Gemfile
93
- - Gemfile.lock
94
92
  - MIT-LICENSE
95
93
  - README.md
96
94
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,90 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- redmine_airbrake_backend (0.4.2)
5
- hpricot
6
- htmlentities
7
- rails
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- actionmailer (4.0.4)
13
- actionpack (= 4.0.4)
14
- mail (~> 2.5.4)
15
- actionpack (4.0.4)
16
- activesupport (= 4.0.4)
17
- builder (~> 3.1.0)
18
- erubis (~> 2.7.0)
19
- rack (~> 1.5.2)
20
- rack-test (~> 0.6.2)
21
- activemodel (4.0.4)
22
- activesupport (= 4.0.4)
23
- builder (~> 3.1.0)
24
- activerecord (4.0.4)
25
- activemodel (= 4.0.4)
26
- activerecord-deprecated_finders (~> 1.0.2)
27
- activesupport (= 4.0.4)
28
- arel (~> 4.0.0)
29
- activerecord-deprecated_finders (1.0.3)
30
- activesupport (4.0.4)
31
- i18n (~> 0.6, >= 0.6.9)
32
- minitest (~> 4.2)
33
- multi_json (~> 1.3)
34
- thread_safe (~> 0.1)
35
- tzinfo (~> 0.3.37)
36
- arel (4.0.2)
37
- builder (3.1.4)
38
- erubis (2.7.0)
39
- hike (1.2.3)
40
- hpricot (0.8.6)
41
- htmlentities (4.3.1)
42
- i18n (0.6.9)
43
- mail (2.5.4)
44
- mime-types (~> 1.16)
45
- treetop (~> 1.4.8)
46
- mime-types (1.25.1)
47
- minitest (4.7.5)
48
- multi_json (1.9.2)
49
- polyglot (0.3.4)
50
- rack (1.5.2)
51
- rack-test (0.6.2)
52
- rack (>= 1.0)
53
- rails (4.0.4)
54
- actionmailer (= 4.0.4)
55
- actionpack (= 4.0.4)
56
- activerecord (= 4.0.4)
57
- activesupport (= 4.0.4)
58
- bundler (>= 1.3.0, < 2.0)
59
- railties (= 4.0.4)
60
- sprockets-rails (~> 2.0.0)
61
- railties (4.0.4)
62
- actionpack (= 4.0.4)
63
- activesupport (= 4.0.4)
64
- rake (>= 0.8.7)
65
- thor (>= 0.18.1, < 2.0)
66
- rake (10.2.2)
67
- sprockets (2.12.0)
68
- hike (~> 1.2)
69
- multi_json (~> 1.0)
70
- rack (~> 1.0)
71
- tilt (~> 1.1, != 1.3.0)
72
- sprockets-rails (2.0.1)
73
- actionpack (>= 3.0)
74
- activesupport (>= 3.0)
75
- sprockets (~> 2.8)
76
- thor (0.19.1)
77
- thread_safe (0.3.2)
78
- tilt (1.4.1)
79
- treetop (1.4.15)
80
- polyglot
81
- polyglot (>= 0.3.1)
82
- tzinfo (0.3.39)
83
-
84
- PLATFORMS
85
- ruby
86
-
87
- DEPENDENCIES
88
- bundler (~> 1.3)
89
- rake
90
- redmine_airbrake_backend!