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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: baff921a2a444802c1cb09ef33c2bae8e0998c41558982e91dec5f441b14ab99
4
- data.tar.gz: 7ea740e3b1e9b186f1bd97455dbf099e94220a0f185db1af066fb4f0cacc8095
3
+ metadata.gz: 4f55bcc1a15b5bb9a73b90c8e9e61ed8e9c3c2d014ec4d28edd19b3bb2e56489
4
+ data.tar.gz: 5450b27bf6ef559a49d729c8a70c7a21288d81f46add15e661dad04051023e8c
5
5
  SHA512:
6
- metadata.gz: 584b11a5f07cec2a14d7a4d061efba0643395e73b9ee40518e4a72d4f02c4583a4735e71023d6a4f7b5d0454f1d70a8577238ce2ba3d30a1bf64883c5053b914
7
- data.tar.gz: c129c5ad0b8a3e503d9ed43340ef62961b272818ad971008e889c97a697cb75eefde6c6ce7323b04fe84281e03caf427cc2b16e3ffc4ad7d04ba18071f79dc4c
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.0...HEAD
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rack-queries (0.1.1)
4
+ rack-queries (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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>
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rack
4
4
  module Queries
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.2'
6
6
  end
7
7
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rack-queries",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "The frontend component of the rack queries page",
5
5
  "main": "src/app.js",
6
6
  "scripts": {
data/rack-queries.gemspec CHANGED
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- lib = File.expand_path(File.join('lib', 'rack'), __dir__)
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'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-queries
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Deisz