Skip to content

Commit e0dc365

Browse files
authored
Merge pull request #15 from kigster/master
Version 2.0 of the wrapper
2 parents 328fb9a + 4724e12 commit e0dc365

85 files changed

Lines changed: 3277 additions & 565 deletions

Some content is hidden

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

.atom-build.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"cmd": "bundle",
3+
"name": "Run All Specs",
4+
"args": [ "exec", "rspec", "-c", "-b", "-p 1", "--format progress", "--color", "spec/" ],
5+
"keymap": "ctrl-r",
6+
"sh": true,
7+
"errorMatch": [
8+
"rspec (?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+) #",
9+
"# (?<file>\\./.*):(?<line>\\d+)",
10+
"\\s+from (?<file>\\./.*):(?<line>\\d+)",
11+
"`(require|load)': (?<file>\\./.*):(?<line>\\d+)",
12+
"^(<file>/.*):(?<line>\\d+)"
13+
],
14+
"targets": {
15+
"Run Current Spec": {
16+
"cmd": "bundle",
17+
"args": [ "exec", "rspec", "{FILE_ACTIVE}" ],
18+
"sh": false,
19+
"keymap": "ctrl-shift-r"
20+
}
21+
}
22+
}

.codeclimate.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
engines:
3+
duplication:
4+
enabled: true
5+
config:
6+
languages:
7+
- ruby
8+
fixme:
9+
enabled: true
10+
rubocop:
11+
enabled: true
12+
checks:
13+
Rubocop/Style/FrozenStringLiteralComment:
14+
enabled: false
15+
Rubocop/Style/FrozenStringLiteralComment:
16+
enabled: false
17+
ratings:
18+
paths:
19+
- "**.inc"
20+
- "**.js"
21+
- "**.jsx"
22+
- "**.module"
23+
- "**.php"
24+
- "**.py"
25+
- "**.rb"
26+
exclude_paths:
27+
- doc/
28+
- spec/
29+
- bin/
30+
#

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
example-shipment.json
2+
doc/
3+
*.gem
4+
*.rbc
5+
.bundle
6+
.config
7+
.yardoc
8+
InstalledFiles
9+
_yardoc
10+
Gemfile.lock
11+
coverage
12+
lib/bundler/man
13+
pkg
14+
rdoc
15+
spec/reports
16+
test/tmp
17+
test/version_tmp
18+
tmp
19+
vendor/
20+
**/.DS_Store
21+
22+
.idea/

.rspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--format progress

0 commit comments

Comments
 (0)