redstone-dart / redstone

A metadata driven microframework for Dart.
http://redstone-dart.github.io/redstone
MIT License
342 stars 42 forks source link

Is redstone dead? #61

Closed azenla closed 9 years ago

azenla commented 9 years ago

I am praying that redstone isn't dead! I love it too much!

luizmineo commented 9 years ago

No, it's not. I'm working on the v0.6 version for a while, and I hope to publish it on github soon. Stay tuned!

azenla commented 9 years ago

:) Thanks. You are awesome.

iamsalnikov commented 9 years ago

You are awesome

:+1:

azenla commented 9 years ago

@luizmineo What is the status of v0.6? If it will be awhile, can you detail what's new?

luizmineo commented 9 years ago

Well, it's taking more time than I had planned, but it's almost 60% done.

The main goal of this version is to reorganize the entire implementation of Redstone, which will make the code more easy to maintain and evolve. Also, I'm taking the opportunity to polish the API, and add some other cool features (which were nearly impossible to implement in the current version, see below). The downside is that this version introduces some breaking changes, but I think it's for the best.

Some highlights of this version are:

@Interceptor("/.*")
Future corsInterceptor() async {
  await chain.next();
  return response.change(headers: {
    "Access-Control-Allow-Origin": "*"
  });
} 

Also, routes and error handlers have received new features.

Right now, v0.6 is incomplete and broken :( so I will publish it only when it achieves a usable state. I can't promise a release date, since the framework is developed in my spare time, but I hope to release it in the near future.

azenla commented 9 years ago

@luizmineo I like to donate to people who do amazing things with Dart btw, so if you would like to open up a donation page, I would be glad to help!

Thanks for the update too!

luizmineo commented 9 years ago

The first alpha release of Redstone.dart v0.6 is available for test. See https://github.com/luizmineo/redstone.dart/tree/v0.6

azenla commented 9 years ago

Thanks!