remove_tl 1.0.1 → 1.0.2
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/Gemfile +2 -0
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/remove_tl.gemspec +4 -3
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e00ad3b102fb7516d6540e712fd1aae299a4dbc7
|
|
4
|
+
data.tar.gz: c8d9cbb181ede5130fb228bd935b40f8f6286252
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1debf5191b34da8267cba1e99c29081bc5044ec6e9517f9cc390901e55b874ca3e9d4f306720fdcbc8c9a1b4fef5e799ef7ed4fc1027d03830ca78a361e6992
|
|
7
|
+
data.tar.gz: 5e3343871443457c8f4b643f3545342112e3b4b87430257057febd25d8e4d16c0772489bc09a0526f0bfdf084b3f1545889dc21a6ed0e0aa4ee810a6e089f43e
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -18,9 +18,10 @@ Jeweler::Tasks.new do |gem|
|
|
|
18
18
|
gem.homepage = "http://github.com/jmbuscemi/remove_tl"
|
|
19
19
|
gem.license = "MIT"
|
|
20
20
|
gem.summary = %Q{Remove Turbolinks from a rails app}
|
|
21
|
-
gem.description = %Q{Turbolinks can cause JS troubles in a rails app, unless properly used. This is a simple gem to remove everything related to turbolinks from a
|
|
21
|
+
gem.description = %Q{Turbolinks can cause JS troubles in a rails app, unless properly used. This is a simple gem to remove everything related to turbolinks from a Rails 4 app.}
|
|
22
22
|
gem.email = "jmbuscemi@gmail.com"
|
|
23
23
|
gem.authors = ["John M Buscemi"]
|
|
24
|
+
gem.required_ruby_version = ['>= 2.2.0', '< 2.2.3']
|
|
24
25
|
# dependencies defined in Gemfile
|
|
25
26
|
end
|
|
26
27
|
Jeweler::RubygemsDotOrgTasks.new
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.2
|
data/remove_tl.gemspec
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: remove_tl 1.0.
|
|
5
|
+
# stub: remove_tl 1.0.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "remove_tl"
|
|
9
|
-
s.version = "1.0.
|
|
9
|
+
s.version = "1.0.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["John M Buscemi"]
|
|
14
14
|
s.date = "2015-11-06"
|
|
15
|
-
s.description = "Turbolinks can cause JS troubles in a rails app, unless properly used. This is a simple gem to remove everything related to turbolinks from a
|
|
15
|
+
s.description = "Turbolinks can cause JS troubles in a rails app, unless properly used. This is a simple gem to remove everything related to turbolinks from a Rails 4 app."
|
|
16
16
|
s.email = "jmbuscemi@gmail.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
18
18
|
"LICENSE.txt",
|
|
@@ -34,6 +34,7 @@ Gem::Specification.new do |s|
|
|
|
34
34
|
]
|
|
35
35
|
s.homepage = "http://github.com/jmbuscemi/remove_tl"
|
|
36
36
|
s.licenses = ["MIT"]
|
|
37
|
+
s.required_ruby_version = Gem::Requirement.new(["< 2.2.3", ">= 2.2.0"])
|
|
37
38
|
s.rubygems_version = "2.4.5"
|
|
38
39
|
s.summary = "Remove Turbolinks from a rails app"
|
|
39
40
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: remove_tl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John M Buscemi
|
|
@@ -95,7 +95,7 @@ dependencies:
|
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: 4.2.1
|
|
97
97
|
description: Turbolinks can cause JS troubles in a rails app, unless properly used.
|
|
98
|
-
This is a simple gem to remove everything related to turbolinks from a
|
|
98
|
+
This is a simple gem to remove everything related to turbolinks from a Rails 4 app.
|
|
99
99
|
email: jmbuscemi@gmail.com
|
|
100
100
|
executables: []
|
|
101
101
|
extensions: []
|
|
@@ -125,9 +125,12 @@ require_paths:
|
|
|
125
125
|
- lib
|
|
126
126
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
127
127
|
requirements:
|
|
128
|
+
- - "<"
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: 2.2.3
|
|
128
131
|
- - ">="
|
|
129
132
|
- !ruby/object:Gem::Version
|
|
130
|
-
version:
|
|
133
|
+
version: 2.2.0
|
|
131
134
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
135
|
requirements:
|
|
133
136
|
- - ">="
|