File tree Expand file tree Collapse file tree 5 files changed +14
-10
lines changed Expand file tree Collapse file tree 5 files changed +14
-10
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.2.2
2
+ - Fixed missing connection if loaded from YAML
3
+ - Added tests for multiple connection switches with another block
4
+
1
5
## 0.2.1
2
6
3
7
- Added support for Proc in config
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- ar_shard (0.2.1 )
4
+ ar_shard (0.2.2 )
5
5
activerecord (>= 6 )
6
6
7
7
GEM
Original file line number Diff line number Diff line change 1
- require " bundler/gem_tasks"
2
- require " rake/testtask"
1
+ require ' bundler/gem_tasks'
2
+ require ' rake/testtask'
3
3
4
4
Rake ::TestTask . new ( :test ) do |t |
5
- t . libs << " test"
6
- t . libs << " lib"
7
- t . test_files = FileList [ " test/**/*_test.rb" ]
5
+ t . libs << ' test'
6
+ t . libs << ' lib'
7
+ t . test_files = FileList [ ' test/**/*_test.rb' ]
8
8
end
9
9
10
- task : default => :test
10
+ task default : :test
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ Gem::Specification.new do |spec|
6
6
spec . authors = [ 'Alex Tsirel' ]
7
7
spec . email = [ '[email protected] ' ]
8
8
9
- spec . summary = 'Multibase Support for ActiveRecord Models with dynamic config'
10
- spec . description = 'Multibase Support for ActiveRecord Models with dynamic config'
9
+ spec . summary = 'Isolated Multibase Support for ActiveRecord Models with dynamic config'
10
+ spec . description = 'Isolated Multibase Support for ActiveRecord Models with dynamic config'
11
11
spec . homepage = 'https://github.com/noma4i/ar_shard'
12
12
spec . license = 'MIT'
13
13
spec . required_ruby_version = Gem ::Requirement . new ( '>= 2.3.0' )
Original file line number Diff line number Diff line change 1
1
module ARShard
2
- VERSION = "0.2.1 "
2
+ VERSION = "0.2.2 "
3
3
end
You can’t perform that action at this time.
0 commit comments