From 02bb43c181c3277c18714c6c54ce981cea4e5ed2 Mon Sep 17 00:00:00 2001 From: Priit Tark Date: Fri, 27 Mar 2015 10:23:20 +0200 Subject: [PATCH 1/3] Updated spring --- Gemfile | 4 ++-- Gemfile.lock | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index f1cc48b82..4d4300b06 100644 --- a/Gemfile +++ b/Gemfile @@ -72,8 +72,8 @@ gem 'depp', github: 'domify/depp', ref: '730b264929613033d334a636a29b04a39693b10 group :development do # dev tools - gem 'spring', '~> 1.2.0' - gem 'spring-commands-rspec', '~> 1.0.2' + gem 'spring', '~> 1.3.3' + gem 'spring-commands-rspec', '~> 1.0.4' gem 'guard', '~> 2.6.1' # run tests automatically gem 'guard-rspec', '~> 4.3.1' gem 'guard-rails', '~> 0.7.0' # run EPP server automatically diff --git a/Gemfile.lock b/Gemfile.lock index 65d3ba8e6..78f5d103b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -438,7 +438,7 @@ GEM temple (~> 0.6.9) tilt (>= 1.3.3, < 2.1) slop (3.6.0) - spring (1.2.0) + spring (1.3.3) spring-commands-rspec (1.0.4) spring (>= 0.9.1) sprockets (2.12.3) @@ -564,8 +564,8 @@ DEPENDENCIES shoulda-matchers (~> 2.6.1) simplecov (~> 0.9.1) simpleidn (~> 0.0.5) - spring (~> 1.2.0) - spring-commands-rspec (~> 1.0.2) + spring (~> 1.3.3) + spring-commands-rspec (~> 1.0.4) therubyracer traceroute (~> 0.4.0) turbolinks (~> 2.5.3) From 600204da51cf889808d27564ef4cd449d208429b Mon Sep 17 00:00:00 2001 From: Priit Tark Date: Fri, 27 Mar 2015 10:25:52 +0200 Subject: [PATCH 2/3] Updated depp --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 4d4300b06..ae5c9f8cd 100644 --- a/Gemfile +++ b/Gemfile @@ -67,7 +67,7 @@ gem 'deep_cloneable', '~> 2.1.1' gem 'digidoc_client', '~> 0.2.1' # epp + repp client -gem 'depp', github: 'domify/depp', ref: '730b264929613033d334a636a29b04a39693b107' +gem 'depp', github: 'domify/depp', ref: '881e01fa3c6d75adc28e425f6347f754bf89bec3' # gem 'depp', path: '/home/martin/projects/depp' group :development do diff --git a/Gemfile.lock b/Gemfile.lock index 78f5d103b..c05426b52 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,8 +10,8 @@ GIT GIT remote: git://github.com/domify/depp.git - revision: 730b264929613033d334a636a29b04a39693b107 - ref: 730b264929613033d334a636a29b04a39693b107 + revision: 881e01fa3c6d75adc28e425f6347f754bf89bec3 + ref: 881e01fa3c6d75adc28e425f6347f754bf89bec3 specs: depp (0.0.2) coderay (>= 1.1.0) From e13debde82c4446c743b37b5284f8c22bd948d71 Mon Sep 17 00:00:00 2001 From: Priit Tark Date: Fri, 27 Mar 2015 10:29:45 +0200 Subject: [PATCH 3/3] removed deprication issue in invoice migartion, less noise for deployers --- db/migrate/20150320132023_create_invoices.rb | 2 +- db/schema.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/db/migrate/20150320132023_create_invoices.rb b/db/migrate/20150320132023_create_invoices.rb index 9caf0082a..36376f899 100644 --- a/db/migrate/20150320132023_create_invoices.rb +++ b/db/migrate/20150320132023_create_invoices.rb @@ -1,7 +1,7 @@ class CreateInvoices < ActiveRecord::Migration def change create_table :invoices do |t| - t.timestamps + t.timestamps null: false end end end diff --git a/db/schema.rb b/db/schema.rb index 4945b36fe..5818a0e3e 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -227,8 +227,8 @@ ActiveRecord::Schema.define(version: 20150320132023) do add_index "epp_sessions", ["updated_at"], name: "index_epp_sessions_on_updated_at", using: :btree create_table "invoices", force: :cascade do |t| - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false end create_table "keyrelays", force: :cascade do |t|