Skip to content

Commit c16ee0e

Browse files
committed
Remove jeweler, update gems
1 parent f89bec4 commit c16ee0e

File tree

6 files changed

+109
-233
lines changed

6 files changed

+109
-233
lines changed

.gitignore

+11-49
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,11 @@
1-
# rcov generated
2-
coverage
3-
coverage.data
4-
5-
# rdoc generated
6-
rdoc
7-
8-
# yard generated
9-
doc
10-
.yardoc
11-
12-
# bundler
13-
.bundle
14-
15-
# jeweler generated
16-
pkg
17-
18-
# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
19-
#
20-
# * Create a file at ~/.gitignore
21-
# * Include files you want ignored
22-
# * Run: git config --global core.excludesfile ~/.gitignore
23-
#
24-
# After doing this, these files will be ignored in all your git projects,
25-
# saving you from having to 'pollute' every project you touch with them
26-
#
27-
# Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
28-
#
29-
# For MacOS:
30-
#
31-
#.DS_Store
32-
33-
# For TextMate
34-
#*.tmproj
35-
#tmtags
36-
37-
# For emacs:
38-
#*~
39-
#\#*
40-
#.\#*
41-
42-
# For vim:
43-
#*.swp
44-
45-
# For redcar:
46-
#.redcar
47-
48-
# For rubinius:
49-
#*.rbc
1+
/.bundle/
2+
/.yardoc
3+
/_yardoc/
4+
/coverage/
5+
/doc/
6+
/pkg/
7+
/spec/reports/
8+
/tmp/
9+
10+
# rspec failure tracking
11+
.rspec_status

Gemfile

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
# frozen_string_literal: true
2+
13
source 'https://rubygems.org'
24

5+
gemspec
6+
37
gem 'rack', '>=1.4.5'
48

59
group :development do
6-
gem "bundler"
7-
gem "jeweler"
8-
gem "rspec"
9-
gem 'rails', '~>5.2.4'
10+
gem 'bundler'
11+
gem 'rspec'
12+
gem 'rails', '~>6.0.3.1'
1013
end

Gemfile.lock

+65-86
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,75 @@
1+
PATH
2+
remote: .
3+
specs:
4+
heroku-deflater (0.7.0)
5+
16
GEM
27
remote: https://rubygems.org/
38
specs:
4-
actioncable (5.2.4.3)
5-
actionpack (= 5.2.4.3)
9+
actioncable (6.0.3.1)
10+
actionpack (= 6.0.3.1)
611
nio4r (~> 2.0)
712
websocket-driver (>= 0.6.1)
8-
actionmailer (5.2.4.3)
9-
actionpack (= 5.2.4.3)
10-
actionview (= 5.2.4.3)
11-
activejob (= 5.2.4.3)
13+
actionmailbox (6.0.3.1)
14+
actionpack (= 6.0.3.1)
15+
activejob (= 6.0.3.1)
16+
activerecord (= 6.0.3.1)
17+
activestorage (= 6.0.3.1)
18+
activesupport (= 6.0.3.1)
19+
mail (>= 2.7.1)
20+
actionmailer (6.0.3.1)
21+
actionpack (= 6.0.3.1)
22+
actionview (= 6.0.3.1)
23+
activejob (= 6.0.3.1)
1224
mail (~> 2.5, >= 2.5.4)
1325
rails-dom-testing (~> 2.0)
14-
actionpack (5.2.4.3)
15-
actionview (= 5.2.4.3)
16-
activesupport (= 5.2.4.3)
26+
actionpack (6.0.3.1)
27+
actionview (= 6.0.3.1)
28+
activesupport (= 6.0.3.1)
1729
rack (~> 2.0, >= 2.0.8)
1830
rack-test (>= 0.6.3)
1931
rails-dom-testing (~> 2.0)
20-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
21-
actionview (5.2.4.3)
22-
activesupport (= 5.2.4.3)
32+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
33+
actiontext (6.0.3.1)
34+
actionpack (= 6.0.3.1)
35+
activerecord (= 6.0.3.1)
36+
activestorage (= 6.0.3.1)
37+
activesupport (= 6.0.3.1)
38+
nokogiri (>= 1.8.5)
39+
actionview (6.0.3.1)
40+
activesupport (= 6.0.3.1)
2341
builder (~> 3.1)
2442
erubi (~> 1.4)
2543
rails-dom-testing (~> 2.0)
26-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
27-
activejob (5.2.4.3)
28-
activesupport (= 5.2.4.3)
44+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
45+
activejob (6.0.3.1)
46+
activesupport (= 6.0.3.1)
2947
globalid (>= 0.3.6)
30-
activemodel (5.2.4.3)
31-
activesupport (= 5.2.4.3)
32-
activerecord (5.2.4.3)
33-
activemodel (= 5.2.4.3)
34-
activesupport (= 5.2.4.3)
35-
arel (>= 9.0)
36-
activestorage (5.2.4.3)
37-
actionpack (= 5.2.4.3)
38-
activerecord (= 5.2.4.3)
48+
activemodel (6.0.3.1)
49+
activesupport (= 6.0.3.1)
50+
activerecord (6.0.3.1)
51+
activemodel (= 6.0.3.1)
52+
activesupport (= 6.0.3.1)
53+
activestorage (6.0.3.1)
54+
actionpack (= 6.0.3.1)
55+
activejob (= 6.0.3.1)
56+
activerecord (= 6.0.3.1)
3957
marcel (~> 0.3.1)
40-
activesupport (5.2.4.3)
58+
activesupport (6.0.3.1)
4159
concurrent-ruby (~> 1.0, >= 1.0.2)
4260
i18n (>= 0.7, < 2)
4361
minitest (~> 5.1)
4462
tzinfo (~> 1.1)
45-
addressable (2.4.0)
46-
arel (9.0.0)
63+
zeitwerk (~> 2.2, >= 2.2.2)
4764
builder (3.2.4)
4865
concurrent-ruby (1.1.6)
4966
crass (1.0.6)
50-
descendants_tracker (0.0.4)
51-
thread_safe (~> 0.3, >= 0.3.1)
5267
diff-lcs (1.3)
5368
erubi (1.9.0)
54-
faraday (0.9.2)
55-
multipart-post (>= 1.2, < 3)
56-
git (1.7.0)
57-
rchardet (~> 1.8)
58-
github_api (0.16.0)
59-
addressable (~> 2.4.0)
60-
descendants_tracker (~> 0.0.4)
61-
faraday (~> 0.8, < 0.10)
62-
hashie (>= 3.4)
63-
mime-types (>= 1.16, < 3.0)
64-
oauth2 (~> 1.0)
6569
globalid (0.4.2)
6670
activesupport (>= 4.2.0)
67-
hashie (4.1.0)
68-
highline (2.0.3)
6971
i18n (1.8.2)
7072
concurrent-ruby (~> 1.0)
71-
jeweler (2.3.9)
72-
builder
73-
bundler
74-
git (>= 1.2.5)
75-
github_api (~> 0.16.0)
76-
highline (>= 1.6.15)
77-
nokogiri (>= 1.5.10)
78-
psych
79-
rake
80-
rdoc
81-
semver2
82-
jwt (2.2.1)
8373
loofah (2.5.0)
8474
crass (~> 1.0.2)
8575
nokogiri (>= 1.5.9)
@@ -88,54 +78,43 @@ GEM
8878
marcel (0.3.3)
8979
mimemagic (~> 0.3.2)
9080
method_source (1.0.0)
91-
mime-types (2.99.3)
9281
mimemagic (0.3.5)
9382
mini_mime (1.0.2)
9483
mini_portile2 (2.4.0)
9584
minitest (5.14.1)
96-
multi_json (1.14.1)
97-
multi_xml (0.6.0)
98-
multipart-post (2.1.1)
9985
nio4r (2.5.2)
10086
nokogiri (1.10.9)
10187
mini_portile2 (~> 2.4.0)
102-
oauth2 (1.4.4)
103-
faraday (>= 0.8, < 2.0)
104-
jwt (>= 1.0, < 3.0)
105-
multi_json (~> 1.3)
106-
multi_xml (~> 0.5)
107-
rack (>= 1.2, < 3)
108-
psych (3.1.0)
10988
rack (2.2.2)
11089
rack-test (1.1.0)
11190
rack (>= 1.0, < 3)
112-
rails (5.2.4.3)
113-
actioncable (= 5.2.4.3)
114-
actionmailer (= 5.2.4.3)
115-
actionpack (= 5.2.4.3)
116-
actionview (= 5.2.4.3)
117-
activejob (= 5.2.4.3)
118-
activemodel (= 5.2.4.3)
119-
activerecord (= 5.2.4.3)
120-
activestorage (= 5.2.4.3)
121-
activesupport (= 5.2.4.3)
91+
rails (6.0.3.1)
92+
actioncable (= 6.0.3.1)
93+
actionmailbox (= 6.0.3.1)
94+
actionmailer (= 6.0.3.1)
95+
actionpack (= 6.0.3.1)
96+
actiontext (= 6.0.3.1)
97+
actionview (= 6.0.3.1)
98+
activejob (= 6.0.3.1)
99+
activemodel (= 6.0.3.1)
100+
activerecord (= 6.0.3.1)
101+
activestorage (= 6.0.3.1)
102+
activesupport (= 6.0.3.1)
122103
bundler (>= 1.3.0)
123-
railties (= 5.2.4.3)
104+
railties (= 6.0.3.1)
124105
sprockets-rails (>= 2.0.0)
125106
rails-dom-testing (2.0.3)
126107
activesupport (>= 4.2.0)
127108
nokogiri (>= 1.6)
128109
rails-html-sanitizer (1.3.0)
129110
loofah (~> 2.3)
130-
railties (5.2.4.3)
131-
actionpack (= 5.2.4.3)
132-
activesupport (= 5.2.4.3)
111+
railties (6.0.3.1)
112+
actionpack (= 6.0.3.1)
113+
activesupport (= 6.0.3.1)
133114
method_source
134115
rake (>= 0.8.7)
135-
thor (>= 0.19.0, < 2.0)
116+
thor (>= 0.20.3, < 2.0)
136117
rake (13.0.1)
137-
rchardet (1.8.0)
138-
rdoc (6.2.1)
139118
rspec (3.9.0)
140119
rspec-core (~> 3.9.0)
141120
rspec-expectations (~> 3.9.0)
@@ -149,7 +128,6 @@ GEM
149128
diff-lcs (>= 1.2.0, < 2.0)
150129
rspec-support (~> 3.9.0)
151130
rspec-support (3.9.3)
152-
semver2 (3.4.2)
153131
sprockets (4.0.0)
154132
concurrent-ruby (~> 1.0)
155133
rack (> 1, < 3)
@@ -161,18 +139,19 @@ GEM
161139
thread_safe (0.3.6)
162140
tzinfo (1.2.7)
163141
thread_safe (~> 0.1)
164-
websocket-driver (0.7.1)
142+
websocket-driver (0.7.2)
165143
websocket-extensions (>= 0.1.0)
166144
websocket-extensions (0.1.4)
145+
zeitwerk (2.3.0)
167146

168147
PLATFORMS
169148
ruby
170149

171150
DEPENDENCIES
172151
bundler
173-
jeweler
152+
heroku-deflater!
174153
rack (>= 1.4.5)
175-
rails (~> 5.2.4)
154+
rails (~> 6.0.3.1)
176155
rspec
177156

178157
BUNDLED WITH

Rakefile

+4-29
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,17 @@
1-
# encoding: utf-8
2-
3-
require 'rubygems'
4-
require 'bundler'
5-
begin
6-
Bundler.setup(:default, :development)
7-
rescue Bundler::BundlerError => e
8-
$stderr.puts e.message
9-
$stderr.puts "Run `bundle install` to install missing gems"
10-
exit e.status_code
11-
end
12-
require 'rake'
13-
14-
require 'jeweler'
15-
Jeweler::Tasks.new do |gem|
16-
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17-
gem.name = "heroku-deflater"
18-
gem.homepage = "http://github.com/romanbsd/heroku-deflater"
19-
gem.license = "MIT"
20-
gem.summary = %Q{Deflate sprockets and webpacker assets on heroku}
21-
gem.description = gem.summary
22-
gem.email = "[email protected]"
23-
gem.authors = ["Roman Shterenzon"]
24-
# dependencies defined in Gemfile
25-
end
26-
Jeweler::RubygemsDotOrgTasks.new
27-
1+
# frozen_string_literal: true
282

3+
require 'bundler/gem_tasks'
294
begin
305
require 'rspec/core/rake_task'
316
RSpec::Core::RakeTask.new(:spec)
327
rescue LoadError
338
end
349

35-
task :default => :spec
10+
task default: :spec
3611

3712
require 'rdoc/task'
3813
Rake::RDocTask.new do |rdoc|
39-
version = File.exist?('VERSION') ? File.read('VERSION') : ""
14+
version = File.exist?('VERSION') ? File.read('VERSION') : ''
4015

4116
rdoc.rdoc_dir = 'rdoc'
4217
rdoc.title = "heroku-deflater #{version}"

0 commit comments

Comments
 (0)