rack-disable_css_animations 0.3.0 → 0.4.0
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 +4 -4
- data/README.md +1 -13
- data/lib/rack/disable_css_animations/version.rb +1 -1
- data/lib/rack/disable_css_animations.rb +6 -0
- data/lib/rack-disable_css_animations.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f4f052828fc1eef129c74f3265617450794ee647433a6be7e1a424ede568d6e
|
|
4
|
+
data.tar.gz: 550bc940c02d553d40d4864b44750f924073b135d73e4aac7379d8d46350361d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cccb5748d6830a131c60f0d8d350ca8fe3d388e97b07cbe94819dbfea2bc14cf684b39530709c5f5adc2ddfd83919b6c062231942793894b3804b6a835932a71
|
|
7
|
+
data.tar.gz: 51f0f41134048e3fc32865eab28dcf2492b5b09cfe9576fb31bef165a21e8ac109fa063f8028d534e2fff8543f691849d5031c06c8f0de7b8413b396b755cb55
|
data/README.md
CHANGED
|
@@ -8,21 +8,9 @@ Add this line to your application's Gemfile:
|
|
|
8
8
|
|
|
9
9
|
gem 'rack-disable_css_animations'
|
|
10
10
|
|
|
11
|
-
And then execute:
|
|
12
|
-
|
|
13
|
-
$ bundle
|
|
14
|
-
|
|
15
|
-
Or install it yourself as:
|
|
16
|
-
|
|
17
|
-
$ gem install rack-disable_css_animations
|
|
18
|
-
|
|
19
11
|
## Usage
|
|
20
12
|
|
|
21
|
-
If using Rails,
|
|
22
|
-
|
|
23
|
-
```ruby
|
|
24
|
-
config.middleware.use Rack::DisableCSSAnimations
|
|
25
|
-
```
|
|
13
|
+
If using Rails, this will be automatically added to your middleware stack when required after Rails, so only require it in the environments you want it in.
|
|
26
14
|
|
|
27
15
|
## Contributing
|
|
28
16
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "rack/disable_css_animations"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rack-disable_css_animations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Micah Geisel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-08-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rack
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- README.md
|
|
68
68
|
- Rakefile
|
|
69
69
|
- bin/setup
|
|
70
|
+
- lib/rack-disable_css_animations.rb
|
|
70
71
|
- lib/rack/disable_css_animations.rb
|
|
71
72
|
- lib/rack/disable_css_animations/version.rb
|
|
72
73
|
- rack-disable_css_animations.gemspec
|