Skip to content

Instantly share code, notes, and snippets.

@viniciusgati
Last active September 8, 2020 13:04
Show Gist options
  • Save viniciusgati/b848fbad764f2fae2b2f3af0b6a028fc to your computer and use it in GitHub Desktop.
Save viniciusgati/b848fbad764f2fae2b2f3af0b6a028fc to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '4.2.5.1'
gem 'tiny_tds'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'devise', '~> 3.4.0'
gem 'kaminari', '~> 0.16.3'
gem 'jquery-rails', '~> 4.1.0'
gem 'jbuilder', '~> 2.0'
gem 'activerecord-sqlserver-adapter', '~> 4.2.0'
gem 'rails-jquery-autocomplete', '~> 1.0.3'
gem 'composite_primary_keys', '~> 8.0.0'
gem 'puma'
gem 'carrierwave', '~> 0.11.2'
gem 'mini_magick', '~> 4.5.1'
gem 'exception_notification'
gem 'jquery-ui-rails', '~> 5.0.5'
gem 'request_store'
gem 'cancan'
group :development, :test do
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'pry-byebug', '~> 3.6.0'
gem 'guard-minitest'
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring', '~> 2.0.2'
gem 'guard'
end
gem 'simple_form', '~> 3.2.1'
gem 'bcrypt', '~> 3.1.7'
gem 'savon', '~> 2.11.1'
gem 'prawn-rails', '~> 1.2.0'
gem 'require_all'
gem 'tzinfo-data'
gem 'http'
default: &default
adapter: sqlserver
database: cev-plus-producao
dataserver: 192.168.0.1
username: xxx
password: xxxxx
timeout: 120
pool: 15
development:
<<: *default
database: cev-plus-producao
test:
<<: *default
database: cev-plus-test
production:
<<: *default
database: cev-plus-producao
protheus:
<<: *default
timeout: 120
pool: 15
database: banco_prod
table_name_sufix: '990'
ip_base: xxxxx
porta_base: 8083
cpf_base: 11144477735
rest_address: 192.168.0.1:8082/rest
rest_empresa: 01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment