Skip to content

Commit f875872

Browse files
committedMar 4, 2015
Initial commit
0 parents  commit f875872

File tree

335 files changed

+6497
-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.

335 files changed

+6497
-0
lines changed
 

‎.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.bundle/
2+
log/*.log
3+
pkg/
4+
test/dummy/db/*.sqlite3
5+
test/dummy/log/*.log
6+
test/dummy/tmp/
7+
test/dummy/.sass-cache
8+
.DS_Store
9+
test/dummy/public/uploads/*

‎Gemfile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
source "http://rubygems.org"
2+
3+
gemspec
4+
5+
gem 'spina-template', path: '~/Desktop/spina-template'
6+
gem 'spina-themes-business', path: '~/Desktop/spina-themes/spina-themes-business'
7+
8+
group :development do
9+
gem 'gem-release'
10+
gem 'pg'
11+
gem 'quiet_assets'
12+
gem 'letter_opener'
13+
gem 'brakeman'
14+
end
15+
16+
group :production do
17+
gem 'sqlite3'
18+
end
19+
20+
group :test do
21+
gem 'sqlite3'
22+
end

0 commit comments

Comments
 (0)
Please sign in to comment.