action_path 0.0.0
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 +7 -0
- data/lib/action_path.rb +9 -0
- data/lib/action_path/base.rb +4 -0
- data/lib/action_path/configuration.rb +3 -0
- data/lib/action_path/version.rb +3 -0
- data/lib/importer.rb +1 -0
- data/spec/spec_helper.rb +5 -0
- metadata +65 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 5b689ecd92a27279a7e5507d93047b39ee136f7525734a063df55a7292f40b3b
|
|
4
|
+
data.tar.gz: 8458ba8c4de05439d2306abfacbd6982b305d527cc0dad23de87daa1fd47c826
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 232c03016a9fef2a9d7c0f4102694f9bc21cc85c971feb7590de5d03cce0f2e6c9cc5c39f1e8742c8d64a25dd3197ea9b5fd515bf0a3aa093a97c0f2edf5e2f8
|
|
7
|
+
data.tar.gz: bd51cbd6d290ef78354e9ca5b6bcaacfcbbbc95ca3bb77d64e72753ead3921e97327848c36fca99b377ef237740a6b44f10f87018a39b848aef70133ef89b67f
|
data/lib/action_path.rb
ADDED
data/lib/importer.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Dir[File.join(__dir__, 'action_path', '*.rb')].each { |file| require file }
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: action_path
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Joshua Hadik
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-04-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: configuron
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0.1'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0.1'
|
|
27
|
+
description: ActionPath is cool.
|
|
28
|
+
email:
|
|
29
|
+
- josh.hadik@gmail.com
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- lib/action_path.rb
|
|
35
|
+
- lib/action_path/base.rb
|
|
36
|
+
- lib/action_path/configuration.rb
|
|
37
|
+
- lib/action_path/version.rb
|
|
38
|
+
- lib/importer.rb
|
|
39
|
+
- spec/spec_helper.rb
|
|
40
|
+
homepage: https://github.com/JoshHadik/ActionPath
|
|
41
|
+
licenses:
|
|
42
|
+
- MIT
|
|
43
|
+
metadata: {}
|
|
44
|
+
post_install_message:
|
|
45
|
+
rdoc_options: []
|
|
46
|
+
require_paths:
|
|
47
|
+
- lib
|
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '0'
|
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
|
+
requirements:
|
|
55
|
+
- - ">="
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: '0'
|
|
58
|
+
requirements: []
|
|
59
|
+
rubyforge_project:
|
|
60
|
+
rubygems_version: 2.7.6
|
|
61
|
+
signing_key:
|
|
62
|
+
specification_version: 4
|
|
63
|
+
summary: Integrating Alexa with your rails app has never been this easy!
|
|
64
|
+
test_files:
|
|
65
|
+
- spec/spec_helper.rb
|