rails-footnotes 4.1.4 → 4.1.5

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: 803d3d85a6d449ddde04bfe4d17245c7dfb7a2e5
4
- data.tar.gz: 40c0a64bf8f12a66a2354c13d887d72e5299e6ec
3
+ metadata.gz: a41c090b37697dabd6c9f5925e39efe2c63de144
4
+ data.tar.gz: c80e75844ceb6eddfcc436b318acf0bf4c49e736
5
5
  SHA512:
6
- metadata.gz: d12c0a1fbf3126730c738ecd3da4cc4051c8af71c6da82b78523d55f7ddab3680e80ec54dc48a62b8642cf1322e16b575543e7210929f23dfc69623a4c871027
7
- data.tar.gz: 6e791ef289186ce48faaa7f4d4c821c2dbb0f766ae1cfb12862cc04d0f38cd9c82cd00b949ee92db0f0ed39d4c9e725edadf5b13d35fc0134430b0ab00694adb
6
+ metadata.gz: a13390246b039b93557322cccfc8af102fb0fce960ddd63231992757b7de4c6c697576f04d24c50a1d8cad6e32d0cefda2319bd3c7f6a98a9309cb155beb9126
7
+ data.tar.gz: c221e2c64876ac31bbd8f9f0c469adfd4c7670445922733fabc5e4a529fa0b4e6e8bf0bc777375a95f41ead43273fc0b37a8aca7ac14b129335edb223decd562
@@ -7,6 +7,7 @@ gemfile:
7
7
  - gemfiles/Gemfile.rails-3.2.x
8
8
  - gemfiles/Gemfile.rails-4.0.x
9
9
  - gemfiles/Gemfile.rails-4.1.x
10
+ - gemfiles/Gemfile.rails-4.2.x
10
11
  - gemfiles/Gemfile.rails-edge
11
12
  matrix:
12
13
  allow_failures:
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ == Footnotes v4.1.5 ==
2
+ * Remove use of non-existing note in initializer introduced in v4, impacting new installations *
1
3
  == Footnotes v4.1.4 ==
2
4
  * Allow to click on links if filenames contain special chars
3
5
  == Footnotes v4.1.3 ==
@@ -100,7 +100,7 @@ Another option is to allow multiple notes to be opened at the same time:
100
100
 
101
101
  Finally, you can control which notes you want to show. The default are:
102
102
 
103
- f.notes = [:session, :cookies, :params, :filters, :routes, :env, :queries, :log, :general]
103
+ f.notes = [:session, :cookies, :params, :filters, :routes, :env, :queries, :log]
104
104
 
105
105
  Setting <tt>f.notes = []</tt> will show none of the available notes, although the supporting CSS and JavaScript will still be included. To completely disable all rails-footnotes content on a page, include <tt>params[:footnotes] = 'false'</tt> in the request.
106
106
 
@@ -2,4 +2,4 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec :path => '..'
4
4
 
5
- gem 'rails', '~> 4.1.0.rc1'
5
+ gem 'rails', '~> 4.1.0'
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec :path => '..'
4
+
5
+ gem 'rails', '~> 4.2.0'
@@ -8,7 +8,7 @@ defined?(Footnotes) && Footnotes.setup do |f|
8
8
  # and should not be modified anywhere else.
9
9
 
10
10
  # Only toggle some notes :
11
- # f.notes = [:session, :cookies, :params, :filters, :routes, :env, :queries, :log, :general]
11
+ # f.notes = [:session, :cookies, :params, :filters, :routes, :env, :queries, :log]
12
12
 
13
13
  # Change the prefix :
14
14
  # f.prefix = 'mvim://open?url=file://%s&line=%d&column=%d'
@@ -1,3 +1,3 @@
1
1
  module Footnotes
2
- VERSION = "4.1.4"
2
+ VERSION = "4.1.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-footnotes
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.4
4
+ version: 4.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman V. Babenko
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2014-11-07 00:00:00.000000000 Z
15
+ date: 2015-02-04 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: rails
@@ -75,6 +75,7 @@ files:
75
75
  - gemfiles/Gemfile.rails-3.2.x
76
76
  - gemfiles/Gemfile.rails-4.0.x
77
77
  - gemfiles/Gemfile.rails-4.1.x
78
+ - gemfiles/Gemfile.rails-4.2.x
78
79
  - gemfiles/Gemfile.rails-edge
79
80
  - lib/generators/rails_footnotes/install_generator.rb
80
81
  - lib/generators/templates/rails_footnotes.rb
@@ -137,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
138
  version: '0'
138
139
  requirements: []
139
140
  rubyforge_project: rails-footnotes
140
- rubygems_version: 2.2.2
141
+ rubygems_version: 2.4.5
141
142
  signing_key:
142
143
  specification_version: 4
143
144
  summary: Every Rails page has footnotes that gives information about your application