Skip to content
This repository was archived by the owner on Jan 16, 2022. It is now read-only.

Commit b26a53c

Browse files
committed
Depend on core 3.99
1 parent f40ecb5 commit b26a53c

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ gemspec
55

66
# during development, do not release
77
if ENV['CIRCLECI']
8-
gem 'jasmine-core', :git => 'http://github.com/jasmine/jasmine.git', ref: 'main'
8+
gem 'jasmine-core', :git => 'http://github.com/jasmine/jasmine.git', ref: '3.99'
99
else
1010
gem 'jasmine-core', :path => '../jasmine'
1111
end

RELEASE.markdown

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ See release docs in jasmine-core
66

77
## Jasmine Gem
88

9-
1. Update the release notes in `release_notes` - use the Anchorman gem to generate the markdown file and edit accordingly
10-
1. update version in version.rb
9+
1. Special step for 3.99: After merging to main, fix references to the 3.99 branch in Gemfile and jasmine_rails_spec.rb.
10+
2. Update the release notes in `release_notes` - use the Anchorman gem to generate the markdown file and edit accordingly
11+
3. update version in version.rb
1112
* for release candidates, add ".rc" + number to the end of the appropriate version part
1213
1. commit and push the version update to github
1314
1. Update the gemspec to depend on the latest version of jasmine-core

jasmine.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Gem::Specification.new do |s|
4747
s.add_development_dependency 'rspec', '>= 2.5.0'
4848
s.add_development_dependency 'nokogiri'
4949

50-
s.add_dependency 'jasmine-core', '~> 3.10.0'
50+
s.add_dependency 'jasmine-core', '3.99.0.dev'
5151
s.add_dependency 'rack', '>= 2.1.4'
5252
s.add_dependency 'webrick'
5353
s.add_dependency 'rake'

spec/jasmine_rails_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def bundle_install
3636

3737
open('Gemfile', 'a') { |f|
3838
f.puts "gem 'jasmine', :path => '#{base}'"
39-
f.puts "gem 'jasmine-core', :git => 'http://github.com/jasmine/jasmine.git', ref: 'main'"
39+
f.puts "gem 'jasmine-core', :git => 'http://github.com/jasmine/jasmine.git', ref: '3.99'"
4040
if RUBY_PLATFORM != 'java' && rails_version == 'rails4'
4141
f.puts "gem 'thin'"
4242
end

0 commit comments

Comments
 (0)