From 6b7d96ecb9dcfed7c8cd63a72d9aa6d237326a80 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Sat, 8 Jun 2019 11:54:01 +0200 Subject: [PATCH] Add a Gemfile that locks Camping back in time Camping development has stalled for a few years now. Use the Gemfile to help bundle create an environment in which it still works, which is basically: Camping Git master plus ActiveSupport/ActionView 4.2. --- .gitignore | 6 +++++ Gemfile | 18 +++++++++++++ Gemfile.lock | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 96 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock diff --git a/.gitignore b/.gitignore index 9bab871..26567c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,9 @@ +# Ignore bundler config +/.bundle + +# Ignore bundler installation +/vendor/bundle + # Ignore SASS and YARD cache .sass-cache .yardoc diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..45d129b --- /dev/null +++ b/Gemfile @@ -0,0 +1,18 @@ +source "http://rubygems.org" +git_source(:github) { |repo| "https://github.com/#{repo}.git" } + + +# This application is build on Camping, use it from Git master +gem "camping", github: "camping/camping", branch: "master" + +# Use ActionView for the templates. +gem "actionview", "~> 4.2.10" + +# Use ActiveRecord as the ORM. +gem "activerecord", "~> 4.2.10" + +# Use SASS for handling CSS assets/Bootstrap. +gem "sass", "~> 3.4.6" + +# Use SQLite as the database. +gem "sqlite3", "~> 1.3.9" diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..730a459 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,72 @@ +GIT + remote: https://github.com/camping/camping.git + revision: f2820bbb103f9cfe225647339a4b939560314eec + branch: master + specs: + camping (2.1.601) + mab (>= 0.0.3) + rack (>= 1.0) + +GEM + remote: http://rubygems.org/ + specs: + actionview (4.2.11.1) + activesupport (= 4.2.11.1) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activemodel (4.2.11.1) + activesupport (= 4.2.11.1) + builder (~> 3.1) + activerecord (4.2.11.1) + activemodel (= 4.2.11.1) + activesupport (= 4.2.11.1) + arel (~> 6.0) + activesupport (4.2.11.1) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + arel (6.0.4) + builder (3.2.3) + concurrent-ruby (1.1.5) + crass (1.0.4) + erubis (2.7.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + loofah (2.2.3) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + mab (0.0.3) + mini_portile2 (2.4.0) + minitest (5.11.3) + nokogiri (1.10.3) + mini_portile2 (~> 2.4.0) + rack (2.0.7) + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.9) + activesupport (>= 4.2.0, < 5.0) + nokogiri (~> 1.6) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.4) + loofah (~> 2.2, >= 2.2.2) + sass (3.4.25) + sqlite3 (1.3.13) + thread_safe (0.3.6) + tzinfo (1.2.5) + thread_safe (~> 0.1) + +PLATFORMS + ruby + +DEPENDENCIES + actionview (~> 4.2.10) + activerecord (~> 4.2.10) + camping! + sass (~> 3.4.6) + sqlite3 (~> 1.3.9) + +BUNDLED WITH + 1.17.3