Skip to content

Commit

Permalink
Revert "Merge remote-tracking branch 'upstream/master' into no_db_tmp"
Browse files Browse the repository at this point in the history
This reverts commit 8e297d7, reversing
changes made to d146ee5.
  • Loading branch information
dmacvicar committed Dec 1, 2017
1 parent 8e297d7 commit 689da9e
Show file tree
Hide file tree
Showing 123 changed files with 2,313 additions and 3,476 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ diff.diff
.*.sw*
.DS_Store
.idea
.directory

# Bundler config
/.bundle
Expand All @@ -22,14 +21,18 @@ public/assets
public/developer
public/developer.html
public/developer2
public/images
public/index.html
public/package

# Logfiles and temfiles
/log/*.log
/tmp

# Configuration files
config/options.yml
config/database.yml
config/secrets.yml

# i18n
locale/*/software.edit.po
locale/*/software.po.time_stamp
Expand Down
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "public/chameleon"]
path = public/chameleon
url = https://github.com/openSUSE/opensuse-theme-chameleon.git
[submodule "public/themes"]
path = public/themes
url = git://github.com/openSUSE/opensuse-themes.git
43 changes: 31 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
source 'https://rubygems.org'

gem 'rails', '~> 4.2.8'
gem 'rails', '~> 4.1.1'
gem 'nokogiri'

# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# With compass
gem 'compass-rails', '~> 2.0.0'
gem 'compass-rails', '< 2.0'
gem 'compass', '< 1.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
Expand All @@ -22,13 +23,6 @@ gem 'fast_gettext', '>= 0.7.0'
# validation error messages
gem 'rails-i18n'

gem 'xmlhash', '>= 1.2.2'
gem 'hashie'
gem 'dalli'
gem 'minitest'
gem 'hoptoad_notifier', "~> 2.3"
gem 'mini_magick'

# needed to collect translatable strings
# not needed at production
group :development do
Expand All @@ -37,13 +31,38 @@ group :development do
gem 'gettext', '>= 1.9.3', :require => false
end

group :production do
gem 'puma'
end
# MySQL is not used, as far as I know
gem 'mysql2', '~> 0.3.1'

gem 'xmlhash', '>= 1.2.2'

#gem 'memcache-client'
gem 'dalli'
gem 'sqlite3'
gem 'minitest'
gem 'hoptoad_notifier', "~> 2.3"
gem 'mini_magick'
#gem 'actionpack-page_caching'
#gem 'actionpack-action_caching'

group :test do
# This doesn't work because capybara-webkit (~> 1.1.1) depends on
# capybara (< 2.2.0, >= 2.0.2) ruby
# gem 'capybara', '~>2.2.1'
# gem 'capybara-webkit', '~>1.1.1'
# This 'bundles' but does not work (incompatibility)
# gem 'capybara', '~>2.2.1'
# gem 'capybara-webkit', '< 1.0'
# And this (the only working solution) cannot by installed because capybara-webkit (~> 1.1.1)
# requires 'websocket (~> 1.0.4)' but rubygem-websocket-1_0_7 requires ruby(abi) = 2.0.0
# gem 'capybara', '~>2.0.3'
# gem 'capybara-webkit', '~>1.1.1'
gem 'capybara'
gem 'poltergeist'

gem 'webmock'

gem 'rubocop', ">= 0.47"
end

# gem 'capistrano', '~> 2.13'
Loading

0 comments on commit 689da9e

Please sign in to comment.