Skip to content

Commit

Permalink
commit inicial
Browse files Browse the repository at this point in the history
  • Loading branch information
vtamara committed Mar 23, 2017
0 parents commit 9b6027f
Show file tree
Hide file tree
Showing 108 changed files with 3,484 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
/.bundle
config/database.yml

# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal

# Ignore all logfiles and tempfiles.
/log/*.log
/tmp
*~
*swp
*.log
*swp
*core
pkg/
test/dummy/config/database.yml
test/dummy/tmp/
test/dummy/db/*.sqlite3
test/dummy/db/*.sqlite3-journal
test/dummy/log/*.log
test/dummy/tmp/
test/dummy/.sass-cache
tmp/
herram/

test/dummy/public/colchon-articulos/
test/dummy/archivos/
test/dummy/public/jn316/
.byebug_history
coverage
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
language: ruby
rvm:
- 2.4.0
notifications:
email: false
script: bundle exec rails test -b
after_success:
- CODECLIMATE_REPO_TOKEN= bundle exec codeclimate-test-reporter
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
before_install:
- sudo locale-gen --no-archive es_CO.UTF-8
- sudo /etc/init.d/postgresql stop
- sudo /etc/init.d/postgresql start 9.3
- cd test/dummy
- psql -c 'CREATE DATABASE jn316gen_pru;' -U postgres
- bundle install
- cp db/structure.sql db/structure.sql.conlock
- sed -e "s/SET lock_timeout = 0;//g" db/structure.sql.conlock >db/structure.sql
- cp config/database.travis.yml config/database.yml
- rake db:setup
- rake sip:indices
- cd ../..

2 changes: 2 additions & 0 deletions CREDITOS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Desarrollo: Vladimir Támara Patiño <[email protected]>

8 changes: 8 additions & 0 deletions DEDICATORIA.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
A Jesús por la salvación

Porque de tal manera amó Dios al mundo que ha dado a su
Hijo unigenito para que todo aquel que en Él crea no se pierda
más tenga vida eterna

Juan 3:16

99 changes: 99 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.0'
# Use sqlite3 as the database for Active Record
gem 'pg'
# Use Puma as the app server
gem 'puma'

gem 'colorize'
# Use SCSS for stylesheets
gem 'sass'
gem 'sass-rails'
gem 'compass-rails'

gem 'chosen-rails'

# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks'

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development


# Ambiente de CSS
gem "twitter-bootstrap-rails"
gem "bootstrap-datepicker-rails"
gem "font-awesome-rails"

# Formularios simples
gem "simple_form"

# Formularios anidados (algunos con ajax)
gem "cocoon", git: "https://github.com/vtamara/cocoon.git"

# Autenticación y roles
gem "devise"
gem "devise-i18n"
gem "cancancan"
gem "bcrypt"

# Listados en páginas
gem "will_paginate"

# ICU con CLDR
gem 'twitter_cldr'

# Maneja adjuntos
gem "paperclip"#, "~> 4.1"

gem 'libxml-ruby', '2.8.0' #https://github.com/xml4r/libxml-ruby/issues/127
gem 'rspreadsheet'


# Zonas horarias
gem "tzinfo"

# Motor de sistemas de información estilo Pasos de Jesús
gem 'sip', git: "https://github.com/pasosdeJesus/sip.git"
#gem 'sip', path: '../sip'

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
#gem 'byebug', platform: :mri
end

group :test do

gem 'simplecov'
# Envia resultados de pruebas desde travis a codeclimate
gem "codeclimate-test-reporter"

end

group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end

Loading

0 comments on commit 9b6027f

Please sign in to comment.