Commit b2104972dd01c8f1b18b028a449c39093d7c5f35

Authored by Antonio Terceiro
1 parent cc3a302d

rails4: Gemfile adjustments

- we don't need the very lastest version of of PostgreSQL driver; the
  one in Jessie should be good enough
- we don't need spring-commands-testunit, according to its own
  documentation:
  http://www.rubydoc.info/gems/spring-commands-testunit/1.0.1
Showing 1 changed file with 1 additions and 2 deletions   Show diff stats
Gemfile
... ... @@ -3,7 +3,7 @@ gem 'rails', '~> 4.1'
3 3 gem 'fast_gettext', '~> 0.9'
4 4 gem 'acts-as-taggable-on', '~> 3.5'
5 5 gem 'rails_autolink', '~> 1.1.5'
6   -gem 'pg', '~> 0.18'
  6 +gem 'pg', '~> 0.17'
7 7 gem 'rmagick', '~> 2.13'
8 8 gem 'RedCloth', '~> 4.2'
9 9 gem 'ruby-feedparser', '~> 0.7'
... ... @@ -51,7 +51,6 @@ end
51 51  
52 52 group :development, :test do
53 53 gem 'spring'
54   - gem 'spring-commands-testunit'
55 54 end
56 55  
57 56 group :test do
... ...