browser_stack_button 0.0.1 → 0.0.2

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: e95e01bcae6177e12748ee24e89f8adf9cead5ab
4
- data.tar.gz: d4b690069c79623c901f54c8175cf0a2368c34b1
3
+ metadata.gz: 2f16a68aa1abd554c9beeb24fd5ce7cda94e89dc
4
+ data.tar.gz: d8d9126c6b98e81f7897b85c423400f37f0dc2fe
5
5
  SHA512:
6
- metadata.gz: f853b824ac9bd0c6475c4702bb0388d213f15fb0c03f456ad8a2ae0d1d37074647d96a7623ced42edd8955e467de320a3c6cefb43eaf817348fa1e472e046692
7
- data.tar.gz: 3f6e428579906d77b82558e1cc0a1fc54bc23069893490caa2a719a57b1b7fc2d04c280bf86c46433de4ac8d30f2bb5c86a97139a5efaa2bf607f7728a5845e4
6
+ metadata.gz: c937a64b860d90b898dffcbed46820545114f90d6fba89cb273f2759d00bf45eceeec3333dcf0bf537216bb4fe56ba8004729e7e97f32a74be9e9d1d5ddc8310
7
+ data.tar.gz: 268b2c5f041c76c10797591d100d604636a45c3f0b1eaaa3c61c4329b80fa3e6f7744f5486ea972a234c1c54cad6fb72221710e3eb722e8091e2313c50c8ce7e
@@ -9,7 +9,7 @@
9
9
  height: 41px
10
10
  opacity: 0.5
11
11
  cursor: pointer
12
- background: image-url('browser_stack.png') no-repeat no-repeat
12
+ background: image-url('browser_stack_button.png') no-repeat no-repeat
13
13
  -webkit-transition: all 0.2s
14
14
  -moz-transition: all 0.2s
15
15
  -o-transition: all 0.2s
@@ -2,5 +2,12 @@ require 'rails'
2
2
 
3
3
  module BrowserStackButton #:nodoc:
4
4
  class Engine < ::Rails::Engine #:nodoc:
5
+ initializer "browser_stack_button.assets.precompile" do |app|
6
+ app.config.assets.precompile += %w[
7
+ browser_stack_button.png
8
+ browser_stack_button.js
9
+ browser_stack_button.css
10
+ ]
11
+ end
5
12
  end
6
13
  end
@@ -1,3 +1,3 @@
1
1
  module BrowserStackButton
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: browser_stack_button
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Jensen
@@ -66,6 +66,7 @@ files:
66
66
  - LICENSE.txt
67
67
  - README.md
68
68
  - Rakefile
69
+ - app/assets/images/browser_stack_button.png
69
70
  - app/assets/javascripts/browser_stack_button.js.coffee
70
71
  - app/assets/stylesheets/browser_stack_button.css.sass
71
72
  - app/views/browser_stack_button/_button.html.erb