snippr 0.15.11 → 0.15.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MGFjMTEwNGFiZTU4OTNmNDczNmZiYjk2MWQxNjFjZDRkOWRjNDlmNA==
4
+ YTRlNGI2NWQwZGQwNTUyYTcxMjllY2VlYjUwYzVmYzVmN2EzMjUzZg==
5
5
  data.tar.gz: !binary |-
6
- YjE1ZDg5NjZlZDdkOTQzMmZmMDBmMWE1ZTVmZTM5N2NhYTQ5NTE0Nw==
6
+ ZTk1YzZiYTU1NDE3NjBhOTc3OGI2NWMwNDQ2NDY5MmJjNzBkNWIwZg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YmRkYWI0YjAzMWJhMWU2ZjE4ZTI5NGFiNGU1YjU0OTYyMzdhODI1MDg5OGJl
10
- OWI5YTI4MTFmODM5ZjcyZTQ5ZDg4YzZlZmI1NWMwNTMyMzUxN2EzMWY2NGZj
11
- Y2FlYzQxOWMyNjBiMjI4OGZlMjJkZjFkMmVmNGUzZmM1Nzk3N2Q=
9
+ NmNmODYzZDQ0NjI3Y2ZkYzgwZjg2YTVmNTBlYTlkYmYyOGFkYTc2YzUzMWI5
10
+ ODcwNTNmNjU1YzkyMzc5ZGMzNmIyYWYyN2QxYWUzNjA1MzNkOTRiYmE4ZGZj
11
+ NjRmYjBkMmJmODMyNGYyZTNhMjg5ZDk3MzkwMDQ2OWM4OWEwMDU=
12
12
  data.tar.gz: !binary |-
13
- OTc3OTY4OTMyNWE4YTFjZWJmMzU2MWE5ODc0MmI3MGQ5ZjY2MTkzYTQwYzQ0
14
- YmE0NGEyMTdlMzU5YWVjYjM0MDI0YzU1YTFlNzczODA5NjZiZjUyZDcxYWM4
15
- NjU5MzI2M2Q3NjYzNTY2NGU4NGE5MTMyYzRmMjIzZDBiNTUyOGI=
13
+ MGM2MzEyMmVlYzc3YzFkODk0YWExYjg5MTNjMjQwNjM5YWE3ODg2MDNmMDNh
14
+ NmQxN2VlYzUzYzlmZWM0NWVhNDU4MGFiNDNlOWVjNTNhYTNlYzFlZjA1Y2U5
15
+ ODkzOTlmNWU3M2ZkOGQ3ZDM4N2ZhZjAyMjFlMTVjM2Q0MzY4NmQ=
@@ -7,6 +7,10 @@ module Snippr
7
7
  config.before_configuration do |app|
8
8
  app.config.paths["app/helpers"] << File.expand_path("../../app/helpers", __FILE__)
9
9
  app.config.paths["app/views"] << File.expand_path("../../app/views", __FILE__)
10
+ app.config.paths["app/assets"] << File.expand_path("../../app/assets", __FILE__)
11
+
12
+ app.config.assets.precompile << "snippr_tardis/snippr_tardis.css"
13
+ app.config.assets.precompile << "snippr_tardis/snippr_tardis.js"
10
14
  end
11
15
 
12
16
  initializer :setup_snippr, :group => :all do |app|
@@ -19,11 +23,6 @@ module Snippr
19
23
 
20
24
  if Snippr.tardis_enabled
21
25
  require "snippr/rails/controller_extension"
22
-
23
- app.config.paths["app/assets"] << File.expand_path("../../app/assets", __FILE__)
24
- app.config.assets.precompile << "snippr_tardis/snippr_tardis.css"
25
- app.config.assets.precompile << "snippr_tardis/snippr_tardis.js"
26
-
27
26
  ActionController::Base.send(:include, Snippr::Rails::ControllerExtension)
28
27
  ActionController::Base.send(:prepend_before_filter, :activate_snippr_tardis)
29
28
  end
data/snippr.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  Gem::Specification.new do |s|
3
3
  s.name = "snippr"
4
- s.version = "0.15.11"
4
+ s.version = "0.15.12"
5
5
  s.date = Time.now
6
6
  s.platform = Gem::Platform::RUBY
7
7
  s.authors = ["Daniel Harrington", "Thomas Jachmann", "Frank Schumacher"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snippr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.11
4
+ version: 0.15.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Harrington