Skip to content

Commit

Permalink
Merge 50b7a7a into 7ab169c
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelperez committed Sep 3, 2018
2 parents 7ab169c + 50b7a7a commit f4d49b3
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ gemfiles/*.lock
.idea
.idea/**/*

.ruby-gemset
.ruby-gemset
*.gem
test_app/*
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.0
2.5.0
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ If you plan to use Rails ERD you may need to install Graphviz ([instructions](ht
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

## Generating a local version of the gem for testing

```
gem build generapp.gemspec
gem install ./generapp*.gem
```

## License

MIT License. Copyright 2016 Koombea. https://koombea.com/
4 changes: 2 additions & 2 deletions lib/generapp/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# with some of Koombea's standards and practices
module Generapp
# Default Rails Version
RAILS_VERSION = '~> 5.0.1'
RAILS_VERSION = '~> 5.2.1'
# Default Ruby Version
RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
# Gem Version
VERSION = '0.4.0'
VERSION = '0.5.0'
end
12 changes: 10 additions & 2 deletions templates/Gemfile.erb
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
source 'https://rubygems.org'

git_source(:github) { |repo| "https://github.com/#{repo}.git" }


ruby '<%= Generapp::RUBY_VERSION %>'

gem 'honeybadger', '~> 2.0' # Error reporting
Expand All @@ -13,24 +16,29 @@ gem 'sass-rails', '~>5.0'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'uglifier'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false

group :development do
gem 'annotate' # Schema model annotation
gem 'better_errors'
gem 'binding_of_caller'
gem 'bullet' # N+1 queries reporter
gem 'lol_dba' # Missing index reporter
gem 'listen', '~> 3.0.5'
gem 'rails-erd' # ER Diagrams
gem 'rubocop', require: false
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'yard', require: false

gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
end

group :development, :test do
gem 'brakeman', require: false
gem 'bundler-audit', require: false
gem 'factory_girl_rails'
gem 'factory_bot'
gem 'pry-rails'
gem 'pry-remote'
gem 'rspec-rails'
Expand Down

0 comments on commit f4d49b3

Please sign in to comment.