https://github.com/jbgo/fastball
The safest, fastest way to build and deploy dynamic applications.
https://github.com/jbgo/fastball
Last synced: 8 months ago
JSON representation
The safest, fastest way to build and deploy dynamic applications.
- Host: GitHub
- URL: https://github.com/jbgo/fastball
- Owner: jbgo
- License: mit
- Created: 2015-08-29T15:25:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-12T21:26:11.000Z (about 10 years ago)
- Last Synced: 2025-04-14T01:38:11.794Z (8 months ago)
- Language: Ruby
- Size: 197 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/jbgo/fastball)
# Fastball
The safest, fastest way to build and deploy dynamic applications.
## Installation
With bundler:
```
# In your Gemfile
gem 'fastball', require: false
# In your terminal
bundle install
```
As a gem:
```
gem install fastball
```
In your Rakefile:
```
require 'fastball/tasks'
```
Verify installation:
```
$ rake -T fastball
rake fastball:config # generate environment specific configuration files
```
You can also run fastball as a standalone command.
```
fastball config
```
## Documentation
See [Fastball::Config](http://www.rubydoc.info/github/jbgo/fastball/master/Fastball/Config)
for documentation and examples of using Fastball to generate config files.
## Roadmap
Fastball is a young, opionated project with more features under active development.
- CLI command to vendor fastball in an application so production servers do not require the fastball gem to function
- Packaging dynamic applications into a build archive with all dependencies vendored (except for the interpreter)
- Deploying build archives into a designated deployment environment
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/jbgo/fastball.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).