Skip to content

Commit 67e45d3

Browse files
committed
[chore] Remove Gemfile.lock from examples
The maintenance overhead is a pain, and it makes it harder to use them from source. We can probably manage these just fine with version constraints, so let's try that. (cherry picked from commit 9b75601)
1 parent bc0ed98 commit 67e45d3

File tree

7 files changed

+9
-334
lines changed

7 files changed

+9
-334
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ target
33
*.log
44
log
55
activemq-data
6+
examples/*/Gemfile.lock
67
examples/*/tmp
78
examples/*/work
89
examples/*/*.war

examples/camping/Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ source 'https://rubygems.org'
22

33
ruby '~> 3.1.0'
44

5-
gem 'camping'
6-
gem 'rack', '~> 2.2'
5+
gem 'camping', '< 3'
6+
gem 'rack', '~> 2.2.0'
77

88
group :development do
99
if !ENV['WARBLER_SRC']; gem 'warbler' else gem 'warbler', path: '../../../warbler' end
1010
if !ENV['JRUBY_RACK_SRC']; gem 'jruby-rack' else gem 'jruby-rack', path: '../../target' end
11-
gem 'jruby-jars', '< 10'
11+
gem 'jruby-jars', '~> 9.4.0'
1212
end

examples/camping/Gemfile.lock

Lines changed: 0 additions & 38 deletions
This file was deleted.

examples/rails7/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ source 'https://rubygems.org'
33
ruby '~> 3.1.0'
44

55
gem 'rails', '~> 7.2.0'
6-
gem 'rack', '~> 2.2'
6+
gem 'rack', '~> 2.2.0'
77
gem 'sprockets-rails'
88

99
group :development do
1010
if !ENV['WARBLER_SRC']; gem 'warbler' else gem 'warbler', path: '../../../warbler' end
1111
if !ENV['JRUBY_RACK_SRC']; gem 'jruby-rack' else gem 'jruby-rack', path: '../../target' end
12-
gem 'jruby-jars', '< 10'
12+
gem 'jruby-jars', '~> 9.4.0'
1313
end

examples/rails7/Gemfile.lock

Lines changed: 0 additions & 241 deletions
This file was deleted.

examples/sinatra/Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ source 'https://rubygems.org'
22

33
ruby '~> 3.1.0'
44

5-
gem 'sinatra'
6-
gem 'rack', '~> 2.2'
5+
gem 'sinatra', '< 4'
6+
gem 'rack', '~> 2.2.0'
77

88
group :development do
99
if !ENV['WARBLER_SRC']; gem 'warbler' else gem 'warbler', path: '../../../warbler' end
1010
if !ENV['JRUBY_RACK_SRC']; gem 'jruby-rack' else gem 'jruby-rack', path: '../../target' end
11-
gem 'jruby-jars', '< 10'
11+
gem 'jruby-jars', '~> 9.4.0'
1212
end

examples/sinatra/Gemfile.lock

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)