Skip to content

Commit

Permalink
Add problem-specifications submodule (#327)
Browse files Browse the repository at this point in the history
Also, update .gitignore to ignore files installed by carton in root
and in the exercises.
  • Loading branch information
cxw42 authored and Daniel Mita committed Oct 4, 2019
1 parent 91627ac commit 8c1cc50
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,11 @@
tmp
bin/configlet
bin/configlet.exe

# Carton-installed files
local/
cpanfile.snapshot

# Ditto, for exercises
**/cpanfile.snapshot
**/local/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "problem-specifications"]
path = problem-specifications
url = https://github.com/exercism/problem-specifications.git
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ perl:
- '5.16'
- '5.14'
install:
- git submodule update --init --recursive
- wget -P ~/bin https://git.io/cpm
- chmod +x ~/bin/cpm
- cpm install
- cpm install -g App::Yath Carton Test2::V0
- carton install
- for i in exercises/*/.meta/solutions; do cd $i; if [ -f cpanfile ]; then echo "$i"; cpm install; fi; cd - > /dev/null; done
- git clone https://github.com/exercism/problem-specifications.git
- bin/fetch-configlet
script:
- bin/configlet lint . --track-id=perl5
Expand Down
1 change: 1 addition & 0 deletions problem-specifications
Submodule problem-specifications added at 3aa4c5

0 comments on commit 8c1cc50

Please sign in to comment.