shopapp 0.2.38 → 0.2.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fe49c46c3ea37a3d7affb9e80c9efb4e4a627bebf2fc8335f04573abce0577b
4
- data.tar.gz: f5b997272ce2ff526d3d44b4f30680ae0d881305aeffb83ec75b60a16d171121
3
+ metadata.gz: f56a726708181cbf72e5606b69a1ff6a8a510556575091bb1c5742b9ad114e87
4
+ data.tar.gz: 3595cf5cb363813c482d21651e877f0e277a6c4ef299f436669c196d39869253
5
5
  SHA512:
6
- metadata.gz: 4783fda80033eecdcd3fd7891ea3a248dd6386bba024947ee6159181b07af373daa1fbe32c94a686c586c3d8803719e874da0cb519a1e3a591d8b068bd7eac96
7
- data.tar.gz: 216ce1b1bfaab6b3b34f67c26ac746d0eea00ad02c3a9e75a8f4dc2934915e2bee14da6d31767c379fa1f2723c139a5a012d79b3d5b4b72048b057a4cd549f3e
6
+ metadata.gz: fed9f8c328a6a2fc1a495bc055991870579862fbeb07c0f5692c7859d24d503b19599bed73a4d0ea636351c2b4ada40364691e6e4fa36d9c25170f64fbafe1c4
7
+ data.tar.gz: bc68053ee626c3e0bacf3df799646d85b2f3e4162811815cdd80dba7eeb8d91a187e0ed13da52ee1cab620ae70cc0d38653ae6d3d24af805df1725eb3d0bb8fa
@@ -1,117 +1 @@
1
1
  @import "material.min";
2
-
3
- html, body {
4
- font-family: 'Fira Sans', Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
5
- color: #323232;
6
- background: #f3f3f3;
7
- height: 100%;
8
- -webkit-font-smoothing: antialiased;
9
- -moz-osx-font-smoothing: grayscale;
10
- }
11
- .card {
12
- box-shadow: none;
13
- }
14
- .navdrawer-persistent-lg {
15
- right: auto;
16
- width: 32rem;
17
- z-index: auto;
18
- }
19
- .text-subheader {
20
- font-weight: 500;
21
- }
22
- .badge {
23
- font-size: .85rem;
24
- }
25
- .input-number {
26
- width: 80px;
27
- padding: 0 12px;
28
- vertical-align: top;
29
- text-align: center;
30
- outline: none;
31
- }
32
- .input-number, .input-number-decrement, .input-number-increment {
33
- border: 1px solid #ccc;
34
- height: 40px;
35
- user-select: none;
36
- }
37
- .input-number-decrement, .input-number-increment {
38
- display: inline-block;
39
- width: 30px;
40
- line-height: 38px;
41
- background: #f1f1f1;
42
- color: #444;
43
- text-align: center;
44
- font-weight: bold;
45
- cursor: pointer;
46
- }
47
- .input-number-decrement:active, .input-number-increment:active {
48
- background: #ddd;
49
- }
50
- .input-number-decrement {
51
- border-right: none;
52
- border-radius: 4px 0 0 4px;
53
- }
54
- .input-number-increment {
55
- border-left: none;
56
- border-radius: 0 4px 4px 0;
57
- }
58
- #sidebar-wrapper {
59
- background: image-url('shopapp3/bg.jpg') center no-repeat;
60
- background-size: cover;
61
- min-height: 100vh;
62
- margin-left: -80px;
63
- -webkit-transition: margin .25s ease-out;
64
- -moz-transition: margin .25s ease-out;
65
- -o-transition: margin .25s ease-out;
66
- transition: margin .25s ease-out;
67
- }
68
- #sidebar-wrapper .sidebar-heading {
69
- height: 80px;
70
- background: #25265E;
71
- }
72
- #sidebar-wrapper .nav {
73
- width: 80px;
74
- }
75
- #sidebar-wrapper .nav .nav-item {
76
- border-right: 2px solid transparent;
77
- }
78
- #sidebar-wrapper .nav .nav-item.active {
79
- background: rgba(37, 38, 94, 0.25);
80
- border-right: 2px solid #FFC800;
81
- }
82
- #sidebar-wrapper .nav .nav-item:hover {
83
- background: rgba(37, 38, 94, 0.25);
84
- }
85
- #page-content-wrapper {
86
- min-width: 100vw;
87
- }
88
- #page-content-wrapper nav {
89
- height: 80px;
90
- box-shadow: 0px 2px 20px 0px rgba(37, 38, 94, 0.1);
91
- }
92
- .navbar .form-control {
93
- background-color: #f5f5f5;
94
- border-bottom: 1px solid #dbdbdb;
95
- min-width: 15rem;
96
- outline: 0;
97
- font-size: .85rem;
98
- font-weight: 500;
99
- }
100
- #wrapper.toggled #sidebar-wrapper {
101
- margin-left: 0;
102
- }
103
- @media (min-width: 768px) {
104
- .toggle {
105
- display: none;
106
- }
107
- #sidebar-wrapper {
108
- margin-left: 0;
109
- }
110
- #page-content-wrapper {
111
- min-width: 0;
112
- width: 100%;
113
- }
114
- #wrapper.toggled #sidebar-wrapper {
115
- margin-left: -80px;
116
- }
117
- }
@@ -34,7 +34,7 @@ namespace :shopapp do
34
34
 
35
35
  def restoredb_from_file(dump_filepath)
36
36
  dev_db_name = Rails.configuration.database_configuration['development']['database']
37
- puts "Restoring to local development database..."
37
+ puts "Restoring to local development database from #{dump_filepath}..."
38
38
  system "pg_restore --no-owner --verbose -c --no-acl -n public --dbname #{dev_db_name} #{Rails.root.join('tmp', dump_filepath)}"
39
39
  puts 'Restored the database to local development.'
40
40
  end
data/shopapp.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'shopapp'
3
- s.version = '0.2.38'
4
- s.date = '2019-03-31'
3
+ s.version = '0.2.39'
4
+ s.date = '2019-04-02'
5
5
  s.summary = 'Do a shoplift.'
6
6
  s.description = 'Ha! Art thou Bedlam? Dost thou thirst base Trojan, to have me fold up Parca\'s fatal web? Hence!\
7
7
  I am qualmish at the smell of leek.'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.38
4
+ version: 0.2.39
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zeljko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-31 00:00:00.000000000 Z
11
+ date: 2019-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties