nostalgic 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77779e214409136c7495dc9dd2f28aaf1afe4e83
4
- data.tar.gz: bbfb7af9e4f93ff8d3ba42f17a4ae601a1e67540
3
+ metadata.gz: ebc06d3e51a6e4356e28520a4636621bbcee8ef1
4
+ data.tar.gz: 97e22ad956de717219eef870ae766b86e5b4eb71
5
5
  SHA512:
6
- metadata.gz: 8bf30e4ab63b106f1062934b312ae1f106f2c53e879649eb2e4057f7d363fe9418284de92a431cd4a8e2e2a0ab8141de046fad105209a7bbcf369778fd2b9e21
7
- data.tar.gz: a4b752b98c30f7d108fcc97d9080c31a2ce9510830226cdcc879d8c722968b6c80468854424925d83d85cb1908c693636140f5734939ba4ee293badd712f9051
6
+ metadata.gz: 361e005c038b952faa109809532dbc990b7b50a7888cf648c1f253079bcba20ed8ae29a745db2ab5864a546edc85d1a79fba85aab9cf5b94e8af97913f72ecbc
7
+ data.tar.gz: 91266e6bd24be58bc5d633ebe3307934a9d0e6fba05b7de1693cb1f97e440ddebae11185009da37b64948028204ddbdda788cd3866c73ab3ab1218de8a49522e
@@ -50,7 +50,7 @@ module Nostalgic
50
50
  def #{name}_on(date)
51
51
  return self.#{name} unless date.present?
52
52
 
53
- '#{name}'.classify.constantize.find_by_id(#{foreign_key}_at(date))
53
+ '#{name}'.classify.constantize.find_by_id(#{foreign_key}_on(date))
54
54
  end
55
55
 
56
56
  alias_method :#{name}_at, :#{name}_on
@@ -1,3 +1,3 @@
1
1
  module Nostalgic
2
- VERSION = '0.2.0'
2
+ VERSION = '0.3.0'
3
3
  end
Binary file
@@ -9522,3 +9522,103 @@ UserTest: test_save_tel
9522
9522
  Nostalgic::AttrTest: test_nostalgic_model
9523
9523
  -----------------------------------------
9524
9524
   (0.0ms) rollback transaction
9525
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9526
+  (0.1ms) begin transaction
9527
+ Fixture Delete (0.3ms) DELETE FROM "nostalgic_attrs"
9528
+ Fixture Insert (0.1ms) INSERT INTO "nostalgic_attrs" ("id", "model_type", "model_id", "name", "value", "effective_at", "created_at", "updated_at") VALUES (1, 'User', 1, 'tel', '111-123-4567', '2017-01-17', '2017-02-17 04:51:08.311013', '2017-02-17 04:51:08.311013')
9529
+ Fixture Insert (0.1ms) INSERT INTO "nostalgic_attrs" ("id", "model_type", "model_id", "name", "value", "effective_at", "created_at", "updated_at") VALUES (2, 'User', 1, 'tel', '222-123-4567', '2017-02-17', '2017-02-17 04:51:08.311013', '2017-02-17 04:51:08.311013')
9530
+ Fixture Insert (0.1ms) INSERT INTO "nostalgic_attrs" ("id", "model_type", "model_id", "name", "value", "effective_at", "created_at", "updated_at") VALUES (3, 'User', 1, 'tel', '333-123-4567', '2017-02-18', '2017-02-17 04:51:08.311013', '2017-02-17 04:51:08.311013')
9531
+ Fixture Insert (0.1ms) INSERT INTO "nostalgic_attrs" ("id", "model_type", "model_id", "name", "value", "effective_at", "created_at", "updated_at") VALUES (4, 'User', 1, 'company_id', '1', '2017-02-16', '2017-02-17 04:51:08.311013', '2017-02-17 04:51:08.311013')
9532
+ Fixture Delete (0.1ms) DELETE FROM "users"
9533
+ Fixture Insert (0.1ms) INSERT INTO "users" ("id", "company_id", "email", "tel", "created_at", "updated_at") VALUES (1, 1, 'test1@example.com', '222-123-4567', '2017-02-17 04:51:08.316303', '2017-02-17 04:51:08.316303')
9534
+ Fixture Delete (0.2ms) DELETE FROM "companies"
9535
+ Fixture Insert (0.1ms) INSERT INTO "companies" ("id", "name", "created_at", "updated_at") VALUES (1, 'TestCompany001', '2017-02-17 04:51:08.318020', '2017-02-17 04:51:08.318020')
9536
+ Fixture Insert (0.1ms) INSERT INTO "companies" ("id", "name", "created_at", "updated_at") VALUES (2, 'TestCompany002', '2017-02-17 04:51:08.318020', '2017-02-17 04:51:08.318020')
9537
+  (3.1ms) commit transaction
9538
+  (0.1ms) begin transaction
9539
+ -----------------------------------------
9540
+ Nostalgic::AttrTest: test_nostalgic_model
9541
+ -----------------------------------------
9542
+  (0.1ms) rollback transaction
9543
+  (0.0ms) begin transaction
9544
+ --------------------------------------------
9545
+ NostalgicTest: test_it_does_something_useful
9546
+ --------------------------------------------
9547
+  (0.0ms) rollback transaction
9548
+  (0.0ms) begin transaction
9549
+ ------------------------------------------------
9550
+ NostalgicTest: test_that_it_has_a_version_number
9551
+ ------------------------------------------------
9552
+  (0.1ms) rollback transaction
9553
+  (0.0ms) begin transaction
9554
+ -------------------------
9555
+ UserTest: test_belongs_to
9556
+ -------------------------
9557
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
9558
+ Nostalgic::Attr Load (0.3ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "company_id"], ["LIMIT", 1]]
9559
+ Nostalgic::Attr Load (0.3ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "tel"], ["LIMIT", 1]]
9560
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "company_id"], ["LIMIT", 1]]
9561
+ Company Load (0.1ms) SELECT "companies".* FROM "companies" WHERE "companies"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
9562
+ Company Load (0.2ms) SELECT "companies".* FROM "companies" ORDER BY "companies"."id" ASC LIMIT ? OFFSET ? [["LIMIT", 1], ["OFFSET", 1]]
9563
+  (0.1ms) SAVEPOINT active_record_1
9564
+ SQL (0.3ms) UPDATE "users" SET "company_id" = ?, "updated_at" = ? WHERE "users"."id" = ? [["company_id", 2], ["updated_at", 2017-02-17 04:51:08 UTC], ["id", 1]]
9565
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND "nostalgic_attrs"."effective_at" = ? ORDER BY "nostalgic_attrs"."id" ASC LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", :company_id], ["effective_at", Sat, 18 Feb 2017], ["LIMIT", 1]]
9566
+ SQL (0.2ms) INSERT INTO "nostalgic_attrs" ("model_type", "model_id", "name", "value", "effective_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["model_type", "User"], ["model_id", 1], ["name", "company_id"], ["value", "2"], ["effective_at", Sat, 18 Feb 2017], ["created_at", 2017-02-17 04:51:08 UTC], ["updated_at", 2017-02-17 04:51:08 UTC]]
9567
+ Nostalgic::Attr Load (0.1ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND "nostalgic_attrs"."effective_at" = ? ORDER BY "nostalgic_attrs"."id" ASC LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", :tel], ["effective_at", Fri, 17 Feb 2017], ["LIMIT", 1]]
9568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9569
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
9570
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "company_id"], ["LIMIT", 1]]
9571
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "tel"], ["LIMIT", 1]]
9572
+ Company Load (0.1ms) SELECT "companies".* FROM "companies" WHERE "companies"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
9573
+ Nostalgic::Attr Load (0.3ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-16') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "company_id"], ["LIMIT", 1]]
9574
+ Company Load (0.1ms) SELECT "companies".* FROM "companies" WHERE "companies"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
9575
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "company_id"], ["LIMIT", 1]]
9576
+ Company Load (0.1ms) SELECT "companies".* FROM "companies" WHERE "companies"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
9577
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-18') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "company_id"], ["LIMIT", 1]]
9578
+ Company Load (0.1ms) SELECT "companies".* FROM "companies" WHERE "companies"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
9579
+  (0.1ms) rollback transaction
9580
+  (0.0ms) begin transaction
9581
+ -----------------------
9582
+ UserTest: test_save_tel
9583
+ -----------------------
9584
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
9585
+ Nostalgic::Attr Load (0.3ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "company_id"], ["LIMIT", 1]]
9586
+ Nostalgic::Attr Load (0.3ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "tel"], ["LIMIT", 1]]
9587
+ Nostalgic::Attr Load (0.3ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "tel"], ["LIMIT", 1]]
9588
+  (0.0ms) SAVEPOINT active_record_1
9589
+ SQL (0.2ms) UPDATE "users" SET "tel" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tel", "444-123-4567"], ["updated_at", 2017-02-17 04:51:08 UTC], ["id", 1]]
9590
+ Nostalgic::Attr Load (0.0ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND "nostalgic_attrs"."effective_at" = ? ORDER BY "nostalgic_attrs"."id" ASC LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", :company_id], ["effective_at", Thu, 16 Feb 2017], ["LIMIT", 1]]
9591
+ Nostalgic::Attr Load (0.0ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND "nostalgic_attrs"."effective_at" = ? ORDER BY "nostalgic_attrs"."id" ASC LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", :tel], ["effective_at", Fri, 17 Feb 2017], ["LIMIT", 1]]
9592
+ SQL (0.1ms) UPDATE "nostalgic_attrs" SET "value" = ?, "updated_at" = ? WHERE "nostalgic_attrs"."id" = ? [["value", "444-123-4567"], ["updated_at", 2017-02-17 04:51:08 UTC], ["id", 2]]
9593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9594
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "tel"], ["LIMIT", 1]]
9595
+  (0.0ms) SAVEPOINT active_record_1
9596
+ SQL (0.3ms) UPDATE "users" SET "tel" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tel", "555-123-4567"], ["updated_at", 2017-02-17 04:51:08 UTC], ["id", 1]]
9597
+ Nostalgic::Attr Load (0.0ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND "nostalgic_attrs"."effective_at" = ? ORDER BY "nostalgic_attrs"."id" ASC LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", :company_id], ["effective_at", Thu, 16 Feb 2017], ["LIMIT", 1]]
9598
+ Nostalgic::Attr Load (0.1ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND "nostalgic_attrs"."effective_at" = ? ORDER BY "nostalgic_attrs"."id" ASC LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", :tel], ["effective_at", Sun, 19 Feb 2017], ["LIMIT", 1]]
9599
+ SQL (0.2ms) INSERT INTO "nostalgic_attrs" ("model_type", "model_id", "name", "value", "effective_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["model_type", "User"], ["model_id", 1], ["name", "tel"], ["value", "555-123-4567"], ["effective_at", Sun, 19 Feb 2017], ["created_at", 2017-02-17 04:51:08 UTC], ["updated_at", 2017-02-17 04:51:08 UTC]]
9600
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9601
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "tel"], ["LIMIT", 1]]
9602
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-18') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "tel"], ["LIMIT", 1]]
9603
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-19') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "tel"], ["LIMIT", 1]]
9604
+  (0.1ms) rollback transaction
9605
+  (0.0ms) begin transaction
9606
+ -------------------
9607
+ UserTest: test_tels
9608
+ -------------------
9609
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
9610
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "company_id"], ["LIMIT", 1]]
9611
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "tel"], ["LIMIT", 1]]
9612
+  (0.1ms) SELECT COUNT(*) FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? [["model_id", 1], ["model_type", "User"], ["name", "tel"]]
9613
+  (0.1ms) rollback transaction
9614
+  (0.0ms) begin transaction
9615
+ ------------------
9616
+ UserTest: test_tel
9617
+ ------------------
9618
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
9619
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "company_id"], ["LIMIT", 1]]
9620
+ Nostalgic::Attr Load (0.3ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_id", 1], ["model_type", "User"], ["name", "tel"], ["LIMIT", 1]]
9621
+ Nostalgic::Attr Load (0.1ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-16') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "tel"], ["LIMIT", 1]]
9622
+ Nostalgic::Attr Load (0.1ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-17') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "tel"], ["LIMIT", 1]]
9623
+ Nostalgic::Attr Load (0.2ms) SELECT "nostalgic_attrs".* FROM "nostalgic_attrs" WHERE "nostalgic_attrs"."model_type" = ? AND "nostalgic_attrs"."model_id" = ? AND "nostalgic_attrs"."name" = ? AND (effective_at <= '2017-02-18') ORDER BY effective_at desc LIMIT ? [["model_type", "User"], ["model_id", 1], ["name", "tel"], ["LIMIT", 1]]
9624
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,35 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nostalgic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-17 00:00:00.000000000 Z
11
+ date: 2017-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '4.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: 5.0.0
22
+ version: '5.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - "~>"
27
+ - - ">="
28
28
  - !ruby/object:Gem::Version
29
29
  version: '4.2'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: 5.0.0
32
+ version: '5.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement