fluentd-ui 0.3.16 → 0.3.17

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
  SHA1:
3
- metadata.gz: 87a9b451329ef88d5d9690a446937799d3c2583c
4
- data.tar.gz: c6a7316f6687b49cba358a01a66bf410c7cca979
3
+ metadata.gz: 15d174d08432c496cf19eb5d6e6a663b9eead54b
4
+ data.tar.gz: f63750434b5475d44a1fd38a37573ed5aa71ab07
5
5
  SHA512:
6
- metadata.gz: aa0e9646db6bf3f6783b7e30d01411ead0d735020154d873698795ebe8293f9bd76563413120f8ffa3e2b4e9eeac50424ddcfe993fab00da29ac76d165fe0c07
7
- data.tar.gz: 258d6f2ee49351abfceb0dd57e21d9ff20bbfa98aa6daad49637492fad2f9652c8a64d287859eb0f4e930a3a5519d48000a2853e1e654bb90d21edb1a8e174d4
6
+ metadata.gz: b23b9df0277dadf689bdd4d9d72e233457bc138d3cdbce0811003451e9709a3fa9423fcc3b800c40760589a366eb2dce282942f10714a9b271bdc935dd04bf95
7
+ data.tar.gz: da92173f3fc2eeed2207c519d4ea77db9b5b85e36e7c3b54fa7313c551f773b7412ebaecd4baaa57aafc060331701616f74d6bedbb01de3cadb028ce46bcdf9c
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ Release 0.3.17 - 2015/04/01
2
+ * [fixed] #164 Display add/remove icons correctly in out_forward settings page
3
+ * [fixed] #165 Fix zombie process is created by clicking start button in dashboard
4
+
1
5
  Release 0.3.16 - 2015/03/23
2
6
  * [fixed] #163 Relax fluentd dependency
3
7
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluentd-ui (0.3.16)
4
+ fluentd-ui (0.3.17)
5
5
  addressable
6
6
  bundler
7
7
  diff-lcs
@@ -115,14 +115,14 @@ GEM
115
115
  i18n_generators (1.2.1)
116
116
  mechanize
117
117
  rails (>= 3.0.0)
118
- jbuilder (2.2.12)
118
+ jbuilder (2.2.7)
119
119
  activesupport (>= 3.0.0, < 5)
120
120
  multi_json (~> 1.2)
121
121
  jquery-rails (3.1.2)
122
122
  railties (>= 3.0, < 5.0)
123
123
  thor (>= 0.14, < 2.0)
124
124
  json (1.8.2)
125
- kramdown (1.6.0)
125
+ kramdown (1.5.0)
126
126
  kramdown-haml (0.0.3)
127
127
  haml
128
128
  launchy (2.4.3)
@@ -160,7 +160,7 @@ GEM
160
160
  slop (~> 3.4)
161
161
  pry-rails (0.3.2)
162
162
  pry (>= 0.9.10)
163
- puma (2.11.1)
163
+ puma (2.11.0)
164
164
  rack (>= 1.1, < 2.0)
165
165
  rack (1.5.2)
166
166
  rack-test (0.6.3)
@@ -200,7 +200,7 @@ GEM
200
200
  rspec-core (~> 2.99.0)
201
201
  rspec-expectations (~> 2.99.0)
202
202
  rspec-mocks (~> 2.99.0)
203
- rubyzip (1.1.7)
203
+ rubyzip (1.1.6)
204
204
  safe_yaml (1.0.4)
205
205
  sass (3.2.19)
206
206
  sass-rails (4.0.5)
@@ -234,7 +234,7 @@ GEM
234
234
  timers (1.1.0)
235
235
  tzinfo (1.2.2)
236
236
  thread_safe (~> 0.1)
237
- tzinfo-data (1.2015.2)
237
+ tzinfo-data (1.2014.10)
238
238
  tzinfo (>= 1.0.0)
239
239
  unf (0.1.4)
240
240
  unf_ext
@@ -54,8 +54,8 @@ module SettingsHelper
54
54
  end
55
55
 
56
56
  def append_and_remove_links
57
- %Q!<a class="btn btn-xs btn-default js-append">icon('fa-plus')}</a> ! +
58
- %Q!<a class="btn btn-xs btn-default js-remove" style="display:none">icon('fa-minus')}</a> !
57
+ %Q!<a class="btn btn-xs btn-default js-append">#{icon('fa-plus')}</a> ! +
58
+ %Q!<a class="btn btn-xs btn-default js-remove" style="display:none">#{icon('fa-minus')}</a> !
59
59
  end
60
60
 
61
61
  def child_data(form, key)
@@ -67,7 +67,8 @@ class Fluentd
67
67
  def actual_start
68
68
  return unless validate_fluentd_options
69
69
  Bundler.with_clean_env do
70
- spawn("fluentd #{options_to_argv}")
70
+ pid = spawn("fluentd #{options_to_argv}")
71
+ Process.detach(pid)
71
72
  end
72
73
 
73
74
  wait_starting
@@ -1,3 +1,3 @@
1
1
  module FluentdUI
2
- VERSION = "0.3.16"
2
+ VERSION = "0.3.17"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluentd-ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.16
4
+ version: 0.3.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masahiro Nakagawa
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-03-23 00:00:00.000000000 Z
12
+ date: 2015-04-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: fluentd