Skip to content

Commit

Permalink
Update copyright and tick version 0.4.0 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlarraz authored Oct 1, 2021
1 parent 9bfa804 commit cb3680c
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright © 2015-2016, Instacart
Copyright © 2015-2021, Instacart

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/0_create_amounts.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017, Instacart
# Copyright 2015-2021, Instacart

class CreateAmounts < ActiveRecord::Migration
def change
Expand Down
2 changes: 1 addition & 1 deletion lib/amountable.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017, Instacart
# Copyright 2015-2021, Instacart

module Amountable
extend ActiveSupport::Autoload
Expand Down
2 changes: 1 addition & 1 deletion lib/amountable/amount.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017, Instacart
# Copyright 2015-2021, Instacart

module Amountable
class Amount < ActiveRecord::Base
Expand Down
2 changes: 1 addition & 1 deletion lib/amountable/jsonb_methods.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017, Instacart
# Copyright 2015-2021, Instacart

module Amountable
module JsonbMethods
Expand Down
2 changes: 1 addition & 1 deletion lib/amountable/nil_amount.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017, Instacart
# Copyright 2015-2021, Instacart

module Amountable
class NilAmount
Expand Down
2 changes: 1 addition & 1 deletion lib/amountable/operations.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017, Instacart
# Copyright 2015-2021, Instacart

module Amountable
module Operations
Expand Down
2 changes: 1 addition & 1 deletion lib/amountable/table_methods.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017, Instacart
# Copyright 2015-2021, Instacart

module Amountable
module TableMethods
Expand Down
4 changes: 2 additions & 2 deletions lib/amountable/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright 2015-2017, Instacart
# Copyright 2015-2021, Instacart

module Amountable
VERSION = '0.3.2'
VERSION = '0.4.0'
end
2 changes: 1 addition & 1 deletion lib/amountable/virtual_amount.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017, Instacart
# Copyright 2015-2021, Instacart

module Amountable
class VirtualAmount
Expand Down
2 changes: 1 addition & 1 deletion spec/amountable/amount_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2016, Instacart
# Copyright 2015-2021, Instacart

require 'spec_helper'

Expand Down
2 changes: 1 addition & 1 deletion spec/amountable/amountable_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2016, Instacart
# Copyright 2015-2021, Instacart

require 'spec_helper'

Expand Down
2 changes: 1 addition & 1 deletion spec/amountable/nil_amount_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2016, Instacart
# Copyright 2015-2021, Instacart

require 'spec_helper'

Expand Down
2 changes: 1 addition & 1 deletion spec/internal/app/models/order.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2016, Instacart
# Copyright 2015-2021, Instacart

class Order < ActiveRecord::Base

Expand Down
2 changes: 1 addition & 1 deletion spec/internal/app/models/subscription.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2016, Instacart
# Copyright 2015-2021, Instacart

if jsonb_available?
class Subscription < ActiveRecord::Base
Expand Down
2 changes: 1 addition & 1 deletion spec/internal/db/schema.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2016, Instacart
# Copyright 2015-2021, Instacart

ActiveRecord::Schema.define do

Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2016, Instacart
# Copyright 2015-2021, Instacart

ENV['RAILS_ENV'] = 'test'
require 'rails'
Expand Down
2 changes: 1 addition & 1 deletion spec/support/database.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2016, Instacart
# Copyright 2015-2021, Instacart

db_name = ENV['DB'] || 'postgresql'
spec_dir = Pathname.new(File.dirname(__FILE__)) / '..'
Expand Down

0 comments on commit cb3680c

Please sign in to comment.