achilles 0.1.0 → 0.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/app/assets/config/achilles/manifest.js +2 -0
- data/app/javascript/achilles/application/application.js +8 -8
- data/app/javascript/achilles/components/component_parser.js +1 -1
- data/app/javascript/achilles/components/components_registry.js +1 -1
- data/app/javascript/achilles/page/page.js +1 -1
- data/lib/achilles/version.rb +1 -1
- metadata +2 -2
- data/app/assets/config/achilles_manifest.js +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e92d1d954f146d150efea4dee095e2d16bf6fb2a4ad2bad651815e555f2582ab
|
4
|
+
data.tar.gz: fafa70f86061ed96e1231acbfb53dac24715f208c95613f61bddb1f557c8b0a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 118ced0a30c3a50de43808fe76ff7af1f56fc7ddc72fadb8b262191fcca41aebc8ae293e351609705e489a6af1ddafadab287887e310744624738d192b3bd7d3
|
7
|
+
data.tar.gz: c837e85a9473fed9a77c358798c1e74f9b8764189c2c90ddea1d85a3226cd59ce9ec4a9757b7c296c6d645d16246254bca1f541857bc40dad6b28982de5e4a05
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { AppConstants } from "
|
2
|
-
import { ComponentsRegistry } from "
|
3
|
-
import { ComponentParser } from "
|
4
|
-
import { ComponentsClassMapper } from "
|
5
|
-
import { Page } from "
|
6
|
-
import { Timezone } from "
|
7
|
-
import { Turbo } from "
|
8
|
-
import { Observer } from "
|
1
|
+
import { AppConstants } from "achilles/application/app_constants";
|
2
|
+
import { ComponentsRegistry } from "achilles/components/components_registry";
|
3
|
+
import { ComponentParser } from "achilles/components/component_parser";
|
4
|
+
import { ComponentsClassMapper } from "achilles/components/components_class_mapper";
|
5
|
+
import { Page } from "achilles/page/page";
|
6
|
+
import { Timezone } from "achilles/application/timezone/timezone";
|
7
|
+
import { Turbo } from "achilles/application/hooks-manager/turbo";
|
8
|
+
import { Observer } from "achilles/application/dom-mutation-observer/observer";
|
9
9
|
|
10
10
|
// Application class/obj to drive all things for the web app
|
11
11
|
class Application {
|
data/lib/achilles/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: achilles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jey Geethan
|
@@ -34,7 +34,7 @@ files:
|
|
34
34
|
- MIT-LICENSE
|
35
35
|
- README.md
|
36
36
|
- Rakefile
|
37
|
-
- app/assets/config/
|
37
|
+
- app/assets/config/achilles/manifest.js
|
38
38
|
- app/assets/stylesheets/achilles/application.css
|
39
39
|
- app/controllers/achilles/application_controller.rb
|
40
40
|
- app/helpers/achilles/application_helper.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
//= link_directory ../stylesheets/achilles .css
|