ru.Bee 1.1.0 → 1.1.1
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 +4 -4
- data/bin/rubee +2 -2
- data/lib/Dockerfile +1 -2
- data/readme.md +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2088b3f7210441573649385ad3abef38634cd1aa07772b4000fde49028cc4d64
|
4
|
+
data.tar.gz: dbfcb6e8ab445430c28f3a07ddcb1b7014b086b6fcdf45904d0aac420b95d13d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6284f5cac1437299defcc4a6d934f9f237cc518bf41ef4f9f3b14947c6c1c8bc140087d6daa33e0e2726781f8ca95621eab9f4f67f49f346b03a5f0489101f89
|
7
|
+
data.tar.gz: fe2cba402b0c7f8b7c2b5e3e0ae2bcfafc157a853ec9666df768dc29ac22968a35e513fb6da439438379d775342b367fd5734f34d5a50753b3c798d1c3de41b7
|
data/bin/rubee
CHANGED
@@ -98,7 +98,7 @@ elsif command == "project"
|
|
98
98
|
gemfile = <<~GEMFILE
|
99
99
|
source 'https://rubygems.org'
|
100
100
|
|
101
|
-
gem '
|
101
|
+
gem 'ru.Bee'
|
102
102
|
gem 'sequel'
|
103
103
|
gem 'sqlite3'
|
104
104
|
gem 'rake'
|
@@ -128,7 +128,7 @@ elsif command == "project"
|
|
128
128
|
|
129
129
|
require 'minitest/autorun'
|
130
130
|
require 'rack/test'
|
131
|
-
require '
|
131
|
+
require 'ru.Bee'
|
132
132
|
|
133
133
|
Rubee::Autoload.call
|
134
134
|
RUBY
|
data/lib/Dockerfile
CHANGED
@@ -15,8 +15,7 @@ RUN bundle install
|
|
15
15
|
COPY .. .
|
16
16
|
|
17
17
|
# Ensure scripts are executable (after the files are copied)
|
18
|
-
RUN chmod +x ./
|
19
|
-
RUN chmod +x ./com/rubee
|
18
|
+
RUN chmod +x ./bin/rubee
|
20
19
|
|
21
20
|
# Set the environment variable RACK_ENV to production
|
22
21
|
ENV RACK_ENV=production
|
data/readme.md
CHANGED