action_path 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -0,0 +1,9 @@
1
+ require 'configuron'
2
+ require 'pry'
3
+
4
+ module ActionPath
5
+ extend Configuron::Configurable
6
+ require_relative 'action_path/configuration'
7
+ end
8
+
9
+ require_relative 'importer'
@@ -0,0 +1,4 @@
1
+ class ActionPath::Base
2
+
3
+
4
+ end
@@ -0,0 +1,3 @@
1
+ class ActionPath::Configuration
2
+
3
+ end
@@ -0,0 +1,3 @@
1
+ module ActionPath
2
+ VERSION = '0.0.0'
3
+ end
@@ -0,0 +1 @@
1
+ Dir[File.join(__dir__, 'action_path', '*.rb')].each { |file| require file }
@@ -0,0 +1,5 @@
1
+ require_relative '../lib/action_path'
2
+ require 'pry'
3
+
4
+ SPEC_ROOT = File.expand_path('../', __FILE__)
5
+ Dir["#{SPEC_ROOT}/support/**/*.rb"].each { |f| require f }
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