effective_pages 1.1.8 → 1.1.9

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: 44fab307c8ece39c3cf97dc982bc8628365e8b18
4
- data.tar.gz: 87d1e48c83df1812e87c0748965095837511e38b
3
+ metadata.gz: 10232000ebdfe564ff4a0ef275a2dd2de7286f88
4
+ data.tar.gz: fd42311db48022159ba9c363ed92b13d09e0d675
5
5
  SHA512:
6
- metadata.gz: a45c1dde5a3c714c6ece899e15ed06951f85be49c70c97e6594d96caa40cbb86f5df9aab091e83acd17c779957de9a4a88fa294b332e00f335aef238e46bbc27
7
- data.tar.gz: 9a5941c380509957fdbedcb85b0509f2f9da517a8d9cfa241a827620b122b8df277d96e6f7f51aca1f2c569fb6e8a804e4aa59aaf6bdb7b8458ed22fa811ebe0
6
+ metadata.gz: b667a9f24a264ea2bcde76dab7be3553954a6237e0662e67d3f362de960b522620cfe81bf6cb482a29c60ce4a657225999d0ea0e627536775d2660a5a3939ba2
7
+ data.tar.gz: 526e8332b63783c119efc1a52ac995d20c6db4f0a2ab67c990c09ed2852fb7f8f70ebebdcd0f684842cec7f85314cfc4908459bc8739ba8775fcb6f3a891d352
data/README.md CHANGED
@@ -13,6 +13,15 @@ Built ontop of effective_regions.
13
13
  Rails 3.2.x and 4.x
14
14
 
15
15
 
16
+ ## Bootstrap3
17
+
18
+ This is the `bootstrap3` branch of effective_datatables which supports Twitter Bootstrap 3.
19
+
20
+ All published effective_datatables 3.x gems will support Twitter Bootstrap 3 and SimpleForm.
21
+
22
+ For Bootstrap 4 please see the master branch and/or effective_pages 2.x gems.
23
+
24
+
16
25
  ## Getting Started
17
26
 
18
27
  Please first install the [effective_regions](https://github.com/code-and-effect/effective_regions) and [effective_datatables](https://github.com/code-and-effect/effective_datatables) gems.
@@ -4,10 +4,6 @@ module EffectivePages
4
4
 
5
5
  # Include Helpers to base application
6
6
  initializer 'effective_pages.action_controller' do |app|
7
- ActiveSupport.on_load :action_controller do
8
- helper EffectivePagesHelper
9
- helper EffectiveMenusHelper
10
- end
11
7
  end
12
8
 
13
9
  # Set up our default configuration options.
@@ -1,3 +1,3 @@
1
1
  module EffectivePages
2
- VERSION = '1.1.8'.freeze
2
+ VERSION = '1.1.9'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_pages
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.8
4
+ version: 1.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-21 00:00:00.000000000 Z
11
+ date: 2018-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -228,42 +228,42 @@ specification_version: 4
228
228
  summary: Content pages, bootstrap3 menu builder and page-specific header tag helpers
229
229
  for your Rails app.
230
230
  test_files:
231
- - spec/controllers/effective/pages_controller_spec.rb
231
+ - spec/spec_helper.rb
232
+ - spec/dummy/app/controllers/application_controller.rb
233
+ - spec/dummy/app/views/layouts/application.html.erb
234
+ - spec/dummy/app/views/effective/pages/example.html.haml
232
235
  - spec/dummy/app/assets/javascripts/application.js
233
236
  - spec/dummy/app/assets/stylesheets/application.css
234
- - spec/dummy/app/controllers/application_controller.rb
235
237
  - spec/dummy/app/helpers/application_helper.rb
236
- - spec/dummy/app/views/effective/pages/example.html.haml
237
- - spec/dummy/app/views/layouts/application.html.erb
238
- - spec/dummy/config/application.rb
239
- - spec/dummy/config/boot.rb
240
- - spec/dummy/config/database.yml
241
- - spec/dummy/config/environment.rb
242
- - spec/dummy/config/environments/development.rb
238
+ - spec/dummy/config/routes.rb
239
+ - spec/dummy/config/locales/en.yml
243
240
  - spec/dummy/config/environments/production.rb
241
+ - spec/dummy/config/environments/development.rb
244
242
  - spec/dummy/config/environments/test.rb
243
+ - spec/dummy/config/environment.rb
244
+ - spec/dummy/config/application.rb
245
+ - spec/dummy/config/database.yml
246
+ - spec/dummy/config/boot.rb
245
247
  - spec/dummy/config/initializers/backtrace_silencers.rb
246
- - spec/dummy/config/initializers/inflections.rb
247
248
  - spec/dummy/config/initializers/mime_types.rb
248
- - spec/dummy/config/initializers/secret_token.rb
249
249
  - spec/dummy/config/initializers/session_store.rb
250
250
  - spec/dummy/config/initializers/wrap_parameters.rb
251
- - spec/dummy/config/locales/en.yml
252
- - spec/dummy/config/routes.rb
251
+ - spec/dummy/config/initializers/secret_token.rb
252
+ - spec/dummy/config/initializers/inflections.rb
253
253
  - spec/dummy/config.ru
254
- - spec/dummy/db/migrate/01_create_effective_pages.rb
255
- - spec/dummy/db/schema.rb
256
- - spec/dummy/db/test.sqlite3
257
- - spec/dummy/public/404.html
254
+ - spec/dummy/spec_link
255
+ - spec/dummy/script/rails
256
+ - spec/dummy/Rakefile
257
+ - spec/dummy/public/favicon.ico
258
258
  - spec/dummy/public/422.html
259
259
  - spec/dummy/public/500.html
260
- - spec/dummy/public/favicon.ico
261
- - spec/dummy/Rakefile
260
+ - spec/dummy/public/404.html
261
+ - spec/dummy/db/schema.rb
262
+ - spec/dummy/db/test.sqlite3
263
+ - spec/dummy/db/migrate/01_create_effective_pages.rb
262
264
  - spec/dummy/README.rdoc
263
- - spec/dummy/script/rails
264
- - spec/dummy/spec_link
265
- - spec/effective_pages_spec.rb
266
- - spec/helpers/effective_menus_helper_spec.rb
267
265
  - spec/models/effective/menu_spec.rb
268
- - spec/spec_helper.rb
269
266
  - spec/support/factories.rb
267
+ - spec/controllers/effective/pages_controller_spec.rb
268
+ - spec/effective_pages_spec.rb
269
+ - spec/helpers/effective_menus_helper_spec.rb