ish_models 0.0.33.192 → 0.0.33.193
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/iro/option_price_item.rb +6 -0
- data/lib/ish_models.rb +2 -3
- metadata +30 -2
- data/lib/ish/input_error.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fc895b3cb92cc734e59ab08fba5811a59ca160946065f741548a9d6cad80be6
|
4
|
+
data.tar.gz: 10d141e79f4b95490f217751152f117801b5ffb3543457f890ba89d3fe29b059
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e867c1540b0759257d40f318f0636dff5f537b1a4c3d727c83b0d8f905c12966c485885c60e48b23ebce496309a9c500b05800eb322712d10a59095fe09a168
|
7
|
+
data.tar.gz: cdca53cb93a7925c869a690347313040023ca6c0b840d934f8a3e6f40d344f2f15cd7df3477844b3751d3e062d87366e8fd712156f0f1b7889be1977a0a80e54
|
data/lib/ish_models.rb
CHANGED
@@ -8,6 +8,8 @@ require 'kaminari/mongoid'
|
|
8
8
|
|
9
9
|
class Gameui; end
|
10
10
|
|
11
|
+
module Iro; end
|
12
|
+
class Ish::InputError < RuntimeError; end
|
11
13
|
module Ish; end
|
12
14
|
|
13
15
|
# I need this thing for permissions???
|
@@ -15,8 +17,6 @@ class Manager; end
|
|
15
17
|
|
16
18
|
module Office; end
|
17
19
|
|
18
|
-
module Warbler; end
|
19
|
-
|
20
20
|
module IshModels
|
21
21
|
|
22
22
|
class << self
|
@@ -52,7 +52,6 @@ require 'ish/email_template'
|
|
52
52
|
require 'ish/email_unsubscribe'
|
53
53
|
require 'ish/gallery_name'
|
54
54
|
require 'ish/image_asset'
|
55
|
-
require 'ish/input_error'
|
56
55
|
require 'ish/invoice'
|
57
56
|
require 'ish/lorem_ipsum'
|
58
57
|
require 'ish/meeting'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ish_models
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.33.
|
4
|
+
version: 0.0.33.193
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piousbox
|
@@ -108,6 +108,34 @@ dependencies:
|
|
108
108
|
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: mysql2
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.5.4
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.5.4
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rails
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 6.1.0
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 6.1.0
|
111
139
|
description: models of ish
|
112
140
|
email: victor@wasya.co
|
113
141
|
executables: []
|
@@ -122,6 +150,7 @@ files:
|
|
122
150
|
- lib/gameui/map_bookmark.rb
|
123
151
|
- lib/gameui/marker.rb
|
124
152
|
- lib/gameui/premium_purchase.rb
|
153
|
+
- lib/iro/option_price_item.rb
|
125
154
|
- lib/ish/cache_key.rb
|
126
155
|
- lib/ish/configuration.rb
|
127
156
|
- lib/ish/crawler.rb
|
@@ -131,7 +160,6 @@ files:
|
|
131
160
|
- lib/ish/email_unsubscribe.rb
|
132
161
|
- lib/ish/gallery_name.rb
|
133
162
|
- lib/ish/image_asset.rb
|
134
|
-
- lib/ish/input_error.rb
|
135
163
|
- lib/ish/invoice.rb
|
136
164
|
- lib/ish/lorem_ipsum.rb
|
137
165
|
- lib/ish/meeting.rb
|
data/lib/ish/input_error.rb
DELETED