Sha256: b6d2473fe442d0d3ea1823bdcdb2818b25438e43c474a217f335f7542859ec4d

Contents?: true

Size: 942 Bytes

Versions: 4

Compression:

Stored size: 942 Bytes

Contents

# genesis\_rails

GenesisRails is a warehouse for templates and initial configurations for
brand new rails project with the minimum needed for a quick development
environment.

## Use

As this project is meant to be a set of basic generators and overrided templates
that depends on third party projects. These are the gems you will need for it:

- genesis\_rails (itself)
- rspec-rails
- factory\_girls\_rails
- responders
- simple\_form

Soon we will have a template for `rails new -m template.rb`, but for now, just
make sure you have all these gems on your Gemfile. Here is an example that
should work:

```ruby
gem 'genesis_rails'
gem 'responders'
gem 'simple_form'

group :test do
  gem "rspec"
  gem "rspec-rails"
  gem "capybara"
  gem "database_cleaner"
  gem 'factory_girl_rails'
end

source 'https://rails-assets.org' do
  gem 'rails-assets-bootstrap'
end
```

If you have any doubt or problem, don't be ashamed and open an issue.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
genesis_rails-0.0.7 README.md
genesis_rails-0.0.6 README.md
genesis_rails-0.0.5 README.md
genesis_rails-0.0.4 README.md