Skip to content

Commit fd4dd09

Browse files
committed
Initial commit
0 parents  commit fd4dd09

File tree

497 files changed

+61159
-0
lines changed

Some content is hidden

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

497 files changed

+61159
-0
lines changed

.database.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
:host: localhost
3+
:user: root
4+
:password:
5+
:database: tilia
6+
:engine: MEMORY

.gitignore

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Gem files
2+
/*.gem
3+
4+
# database connection file
5+
/database.yml
6+
7+
# backup files
8+
*~
9+
10+
# swap files
11+
*.swp
12+
*.kate-swp
13+
14+
# file manager files
15+
*.directory
16+
17+
# coverage
18+
/coverage
19+
20+
# documentation
21+
/doc
22+
/.yardoc
23+
24+
# Example server roots
25+
/examples/*test_root

.rubocop.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Disable metrics - we stick to the sabre coding
2+
Metrics/AbcSize:
3+
Enabled: false
4+
5+
Metrics/BlockNesting:
6+
Enabled: false
7+
8+
Metrics/ClassLength:
9+
Enabled: false
10+
11+
Metrics/ModuleLength:
12+
Enabled: false
13+
14+
Metrics/CyclomaticComplexity:
15+
Enabled: false
16+
17+
Metrics/LineLength:
18+
Enabled: false
19+
20+
Metrics/MethodLength:
21+
Enabled: false
22+
23+
Metrics/ParameterLists:
24+
Enabled: false
25+
26+
Metrics/PerceivedComplexity:
27+
Enabled: false
28+
29+
Style/OptionalArguments:
30+
Enabled: false
31+
32+
# ['word', 'array'] looks better when aligned with other arrays that can't use
33+
# %w() syntax
34+
Style/WordArray:
35+
Enabled: false

.simplecov

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
SimpleCov.start do
2+
add_filter "/test/"
3+
end
4+

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: ruby
2+
rvm:
3+
- 2.2.3
4+
5+
services:
6+
- mysql
7+
8+
before_script:
9+
- mysql -e 'create database IF NOT EXISTS tilia'
10+
- cp -f .database.travis.yml database.yml

0 commit comments

Comments
 (0)