From 34252d2b2240827394c67de8c73d9b8e4af8f861 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Je=CC=81re=CC=81my=20Fabre?= Date: Thu, 21 Jul 2016 14:27:32 +0200 Subject: [PATCH] Add Bundler --- .gitignore | 1 + Gemfile | 4 ++++ Gemfile.lock | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock diff --git a/.gitignore b/.gitignore index 2b60c7b3..52216790 100644 --- a/.gitignore +++ b/.gitignore @@ -44,6 +44,7 @@ build bower_components node_modules .sass-cache +.bundle app/static/js app/static/css app/static/img diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..e5460349 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "https://rubygems.org" +ruby "2.1.2" +gem "compass", "<= 1.0.3" +gem "sass", "<= 3.4.22" diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 00000000..2ea5de15 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,35 @@ +GEM + remote: https://rubygems.org/ + specs: + chunky_png (1.3.6) + compass (1.0.3) + chunky_png (~> 1.2) + compass-core (~> 1.0.2) + compass-import-once (~> 1.0.5) + rb-fsevent (>= 0.9.3) + rb-inotify (>= 0.9) + sass (>= 3.3.13, < 3.5) + compass-core (1.0.3) + multi_json (~> 1.0) + sass (>= 3.3.0, < 3.5) + compass-import-once (1.0.5) + sass (>= 3.2, < 3.5) + ffi (1.9.14) + multi_json (1.12.1) + rb-fsevent (0.9.7) + rb-inotify (0.9.7) + ffi (>= 0.5.0) + sass (3.4.22) + +PLATFORMS + ruby + +DEPENDENCIES + compass (<= 1.0.3) + sass (<= 3.4.22) + +RUBY VERSION + ruby 2.1.2p95 + +BUNDLED WITH + 1.12.5 -- 2.39.5