Skip to content

Commit 54e134a

Browse files
committed
test for #14
1 parent 2b48ed5 commit 54e134a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1055
-1046
lines changed

.gitignore

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2-
#
3-
# If you find yourself ignoring temporary files generated by your text editor
4-
# or operating system, you probably want to add a global ignore instead:
5-
# git config --global core.excludesfile '~/.gitignore_global'
6-
7-
# Ignore bundler config.
8-
/.bundle
9-
10-
# Ignore the default SQLite database.
11-
/db/*.sqlite3
12-
/db/*.sqlite3-journal
13-
14-
# Ignore all logfiles and tempfiles.
15-
/log/*
16-
!/log/.keep
17-
/tmp
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
!/log/.keep
17+
/tmp
1818
/nbproject

.rspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
--color
2-
--require spec_helper
1+
--color
2+
--require spec_helper

.travis.yml

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
language: ruby
2-
rvm:
3-
- 2.2
4-
cache: bundler
5-
git:
6-
depth: 1000
7-
script:
8-
- RAILS_ENV=test bundle exec rake db:migrate
9-
- bundle exec rspec spec/
10-
before_install:
11-
- python -V
12-
- pip -V
13-
- sudo pip install -r travis/requirements.txt
14-
- python ./travis/try_issues.py
15-
after_success:
16-
- openssl aes-256-cbc -a -d -pass pass:travis -in travis/check.txt | bash
1+
language: ruby
2+
rvm:
3+
- 2.2
4+
cache: bundler
5+
git:
6+
depth: 1000
7+
script:
8+
- RAILS_ENV=test bundle exec rake db:migrate
9+
- bundle exec rspec spec/
10+
before_install:
11+
- python -V
12+
- pip -V
13+
- sudo pip install -r travis/requirements.txt
14+
- python ./travis/try_issues.py
15+
after_success:
16+
- openssl aes-256-cbc -a -d -pass pass:travis -in travis/check.txt | bash

Gemfile

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
source 'https://rubygems.org'
2-
3-
4-
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5-
gem 'rails', '4.2.4'
6-
# Use sqlite3 as the database for Active Record
7-
gem 'sqlite3'
8-
# See https://github.com/rails/execjs#readme for more supported runtimes
9-
# gem 'therubyracer', platforms: :ruby
10-
11-
group :development, :test do
12-
gem 'rspec-rails', '~> 3.3'
13-
gem 'capybara', '~> 2.5'
14-
gem 'factory_girl_rails', '~> 4.5'
15-
end
16-
17-
group :development do
18-
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
19-
gem 'byebug'
20-
# Access an IRB console on exception pages or by using <%= console %> in views
21-
gem 'web-console', '~> 2.0'
22-
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
23-
gem 'spring'
24-
end
25-
1+
source 'https://rubygems.org'
2+
3+
4+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5+
gem 'rails', '4.2.4'
6+
# Use sqlite3 as the database for Active Record
7+
gem 'sqlite3'
8+
# See https://github.com/rails/execjs#readme for more supported runtimes
9+
# gem 'therubyracer', platforms: :ruby
10+
11+
group :development, :test do
12+
gem 'rspec-rails', '~> 3.3'
13+
gem 'capybara', '~> 2.5'
14+
gem 'factory_girl_rails', '~> 4.5'
15+
end
16+
17+
group :development do
18+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
19+
gem 'byebug'
20+
# Access an IRB console on exception pages or by using <%= console %> in views
21+
gem 'web-console', '~> 2.0'
22+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
23+
gem 'spring'
24+
end
25+

0 commit comments

Comments
 (0)