]> git.parisson.com Git - mezzo.git/commitdiff
Add Bundler
authorJérémy Fabre <blackmagik88@gmail.com>
Thu, 21 Jul 2016 12:27:32 +0000 (14:27 +0200)
committerJérémy Fabre <blackmagik88@gmail.com>
Thu, 21 Jul 2016 12:27:32 +0000 (14:27 +0200)
.gitignore
Gemfile [new file with mode: 0644]
Gemfile.lock [new file with mode: 0644]

index 2b60c7b39ede0f9a08af9b71251d164f9d22e8d4..5221679052396d66a91a0df45d55f1dfcae3d33b 100644 (file)
@@ -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 (file)
index 0000000..e546034
--- /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 (file)
index 0000000..2ea5de1
--- /dev/null
@@ -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