rack-queries 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/Gemfile.lock +1 -1
- data/lib/rack/queries/static/index.html +2 -2
- data/lib/rack/queries/version.rb +1 -1
- data/package.json +1 -1
- data/rack-queries.gemspec +2 -2
- 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: 4f55bcc1a15b5bb9a73b90c8e9e61ed8e9c3c2d014ec4d28edd19b3bb2e56489
|
4
|
+
data.tar.gz: 5450b27bf6ef559a49d729c8a70c7a21288d81f46add15e661dad04051023e8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18e45faa5d19a42f54c983153fc9222cae541d57f992c38f4d6b6e050d0663fedad53832562205d2743d51fc9290358f7c1fc490f614eb13da5581cd490fa079
|
7
|
+
data.tar.gz: 2342e3aaf4ff7dc0763d50bcf721bd269c943ae660c6f09b6d3f2801a5b2ef3477a1fe8cdccc1b94a4e8bb732a00022f2c7cdc263a3c95ace2c1b6c0b21bb0a8
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [0.1.2] - 2019-02-27
|
10
|
+
### Changed
|
11
|
+
- Use relative paths for the static assets so that when the app is mounted it will be prefixed with the mounting path.
|
12
|
+
|
9
13
|
## [0.1.1] - 2019-02-27
|
10
14
|
### Changed
|
11
15
|
- Changed the require paths for easier integration with bundler.
|
@@ -14,5 +18,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
14
18
|
### Added
|
15
19
|
- Initial release 🎉
|
16
20
|
|
17
|
-
[Unreleased]: https://github.com/CultureHQ/rack-queries/compare/v0.1.
|
21
|
+
[Unreleased]: https://github.com/CultureHQ/rack-queries/compare/v0.1.2...HEAD
|
22
|
+
[0.1.2]: https://github.com/CultureHQ/rack-queries/compare/v0.1.1...v0.1.2
|
23
|
+
[0.1.1]: https://github.com/CultureHQ/rack-queries/compare/v0.1.0...v0.1.1
|
18
24
|
[0.1.0]: https://github.com/CultureHQ/rack-queries/compare/f4f0b2...v0.1.0
|
data/Gemfile.lock
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
<meta name="viewport" content="initial-scale=1, maximum-scale=5">
|
6
6
|
<title>Rack::Queries</title>
|
7
7
|
<link rel="shortcut icon" href="favicon.ico">
|
8
|
-
<link rel="stylesheet" type="text/css" href="app.css" />
|
8
|
+
<link rel="stylesheet" type="text/css" href="./app.css" />
|
9
9
|
</head>
|
10
10
|
<body>
|
11
11
|
<noscript>JavaScript must be enabled in order to run this application.</noscript>
|
12
12
|
<div id="main"></div>
|
13
|
-
<script src="app.js"></script>
|
13
|
+
<script src="./app.js"></script>
|
14
14
|
</body>
|
15
15
|
</html>
|
data/lib/rack/queries/version.rb
CHANGED
data/package.json
CHANGED
data/rack-queries.gemspec
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
lib = File.expand_path(
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
4
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
-
require 'queries/version'
|
5
|
+
require 'rack/queries/version'
|
6
6
|
|
7
7
|
Gem::Specification.new do |spec|
|
8
8
|
spec.name = 'rack-queries'
|