Update to lucky 1.0.0-rc1

This commit is contained in:
Edward Loveall 2023-05-06 10:53:31 -04:00
parent e86108e18f
commit d1ecb76cdc
No known key found for this signature in database
6 changed files with 39 additions and 24 deletions

View File

@ -2,31 +2,27 @@ version: 2.0
shards:
authentic:
git: https://github.com/luckyframework/authentic.git
version: 0.8.2
version: 0.9.0
avram:
git: https://github.com/luckyframework/avram.git
version: 0.23.0
version: 1.0.0
backtracer:
git: https://github.com/sija/backtracer.cr.git
version: 1.2.1
version: 1.2.2
cadmium_transliterator:
git: https://github.com/cadmiumcr/transliterator.git
version: 0.1.0+git.commit.46c4c14594057dbcfaf27e7e7c8c164d3f0ce3f1
carbon:
git: https://github.com/luckyframework/carbon.git
version: 0.2.1
cry:
git: https://github.com/luckyframework/cry.git
version: 0.4.3
crystar:
git: https://github.com/naqvis/crystar.git
version: 0.2.0
version: 0.2.0+git.commit.56db8bb9dfbd5ed6d7908353405a5fae632a6561
db:
git: https://github.com/crystal-lang/crystal-db.git
@ -38,15 +34,23 @@ shards:
exception_page:
git: https://github.com/crystal-loot/exception_page.git
version: 0.2.2
version: 0.3.0
fnv:
git: https://github.com/naqvis/crystal-fnv.git
version: 0.1.3
habitat:
git: https://github.com/luckyframework/habitat.git
version: 0.4.7
html5:
git: https://github.com/naqvis/crystal-html5.git
version: 0.4.0
lucky:
git: https://github.com/luckyframework/lucky.git
version: 0.30.1
version: 1.0.0
lucky_cache:
git: https://github.com/luckyframework/lucky_cache.git
@ -58,11 +62,11 @@ shards:
lucky_flow:
git: https://github.com/luckyframework/lucky_flow.git
version: 0.7.3
version: 0.9.0
lucky_router:
git: https://github.com/luckyframework/lucky_router.git
version: 0.5.1
version: 0.5.2
lucky_task:
git: https://github.com/luckyframework/lucky_task.git
@ -82,7 +86,7 @@ shards:
selenium:
git: https://github.com/matthewmcgarvey/selenium.cr.git
version: 0.9.1
version: 0.10.0
shell-table:
git: https://github.com/luckyframework/shell-table.cr.git
@ -98,9 +102,17 @@ shards:
webdrivers:
git: https://github.com/matthewmcgarvey/webdrivers.cr.git
version: 0.4.0
version: 0.4.1
webless:
git: https://github.com/matthewmcgarvey/webless.git
version: 0.1.0
wordsmith:
git: https://github.com/luckyframework/wordsmith.git
version: 0.3.0
version: 0.4.0
xpath2:
git: https://github.com/naqvis/crystal-xpath2.git
version: 0.1.3

View File

@ -13,13 +13,13 @@ crystal: 1.5.0
dependencies:
lucky:
github: luckyframework/lucky
version: ~> 0.30.1
version: ~> 1.0.0-rc1
avram:
github: luckyframework/avram
version: ~> 1.0.0-rc1
authentic:
github: luckyframework/authentic
version: ~> 0.8.2
carbon:
github: luckyframework/carbon
version: ~> 0.2.0
version: ~> 0.9.0
lucky_env:
github: luckyframework/lucky_env
version: ~> 0.1.4
@ -31,4 +31,4 @@ dependencies:
development_dependencies:
lucky_flow:
github: luckyframework/lucky_flow
version: ~> 0.7.3
version: ~> 0.9.0

View File

@ -10,4 +10,4 @@ LuckyFlow.configure do |settings|
# Be sure to disable for CI.
# settings.driver = LuckyFlow::Drivers::Chrome
end
Spec.before_each { LuckyFlow::Server::INSTANCE.reset }
LuckyFlow::Spec.setup

View File

@ -2,6 +2,8 @@ ENV["LUCKY_ENV"] = "test"
ENV["DEV_PORT"] = "5001"
require "spec"
require "lucky_flow"
require "lucky_flow/ext/lucky"
require "lucky_flow/ext/avram"
require "../src/app"
require "./support/flows/base_flow"
require "./support/**"

View File

@ -1,3 +1,3 @@
module Scribe
VERSION = "2023-03-25"
VERSION = "2023-05-06"
end

View File

@ -7,5 +7,6 @@ require "lucky_task"
require "./tasks/**"
require "./db/migrations/**"
require "lucky/tasks/**"
require "avram/lucky/tasks"
LuckyTask::Runner.run