Skip to content

Commit ae9d933

Browse files
Merge pull request #113 from ethscriptions-protocol/collection_protocol
Implement collections and more generic protocol framework
2 parents 0c328be + 28d6bf9 commit ae9d933

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+9205
-447
lines changed

Gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ gem "awesome_print", "~> 1.9"
6868

6969
gem "redis", "~> 5.0"
7070

71-
gem 'facet_rails_common', git: 'https://github.com/0xfacet/facet_rails_common.git'
72-
7371
gem "cbor", "~> 0.5.9"
7472

7573
gem 'rswag-api'

Gemfile.lock

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIT
22
remote: https://github.com/0xFacet/eth.rb.git
3-
revision: da52c74fe9baecf17177f6b5bfee9f42c1b18970
3+
revision: 089128a7703aa5eeafe41d538f05732b29340188
44
branch: sync/v0.5.16-nohex
55
specs:
66
eth (0.5.16)
@@ -14,13 +14,6 @@ GIT
1414
rbsecp256k1 (~> 6.0)
1515
scrypt (~> 3.0)
1616

17-
GIT
18-
remote: https://github.com/0xfacet/facet_rails_common.git
19-
revision: 2d5cf107df9ea12bb7ab59a8b1ce4d38b4de483b
20-
specs:
21-
facet_rails_common (0.1.0)
22-
order_query (~> 0.5.3)
23-
2417
GEM
2518
remote: https://rubygems.org/
2619
specs:
@@ -105,7 +98,7 @@ GEM
10598
awesome_print (1.9.2)
10699
base64 (0.2.0)
107100
benchmark (0.4.1)
108-
bigdecimal (3.1.5)
101+
bigdecimal (3.2.3)
109102
bls12-381 (0.3.0)
110103
h2c (~> 0.2.0)
111104
bootsnap (1.17.0)
@@ -157,7 +150,7 @@ GEM
157150
csv
158151
mini_mime (>= 1.0.0)
159152
multi_xml (>= 0.5.2)
160-
httpx (1.6.0)
153+
httpx (1.6.2)
161154
http-2 (>= 1.0.0)
162155
i18n (1.14.1)
163156
concurrent-ruby (~> 1.0)
@@ -223,9 +216,6 @@ GEM
223216
bigdecimal (>= 3.0)
224217
ostruct (>= 0.2)
225218
openssl (3.3.0)
226-
order_query (0.5.5)
227-
activerecord (>= 5.0, < 8.1)
228-
activesupport (>= 5.0, < 8.1)
229219
ostruct (0.6.3)
230220
parallel (1.27.0)
231221
parser (3.2.2.4)
@@ -285,7 +275,7 @@ GEM
285275
rake (>= 12.2)
286276
thor (~> 1.0, >= 1.2.2)
287277
zeitwerk (~> 2.6)
288-
rake (13.1.0)
278+
rake (13.3.0)
289279
rbi (0.3.6)
290280
prism (~> 1.0)
291281
rbs (>= 3.4.4)
@@ -416,7 +406,6 @@ DEPENDENCIES
416406
debug
417407
dotenv-rails (~> 2.8)
418408
eth!
419-
facet_rails_common!
420409
fastlz (~> 0.1.0)
421410
httparty (~> 0.22.0)
422411
jwt (~> 2.8)
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
class ApplicationController < ActionController::API
2-
include FacetRailsCommon::ApplicationControllerMethods
2+
def self.cache_actions_on_block(...)
3+
end
34
end

0 commit comments

Comments
 (0)