applinks 0.1.3 → 0.1.4

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
  SHA1:
3
- metadata.gz: b00ab4c2801b3d0b2cfbbb724038257af68dc6f4
4
- data.tar.gz: 355d9a88e5f1046f0dd54741af7f4eeef0f276b7
3
+ metadata.gz: e3616ccb512ce0ee4825b0d5f8089c7b79f3c0e2
4
+ data.tar.gz: 321fee062c1f912bd8769f0ccf332087c3bdbeec
5
5
  SHA512:
6
- metadata.gz: cf8db630f93d3aae0e61ba2ce7d2846f13ac48f5e23a77f9c2f86c2fe86e31f881d0b00cd8d017ed40a088d398a2056332d031d384d21de83db8c38613f1775f
7
- data.tar.gz: a7bc9ff31511d90164f60148d62d81fd43652384fc8c67790f1c3326fb5701d8c3ce634c3baa319a1974d81b5c1e2ea2db9f49dc52ceeea3d85d26077f76dec7
6
+ metadata.gz: 6be21cd138d014b3d5df8f2c4be415f66956c8ee3f6464bcba112935615d964e0c9b26f2d8c874556804de07de2b17bc6b41abbca2c3742597c157809f226f72
7
+ data.tar.gz: 89e01119c35f1f4e05dd72d89764c07b692961ea5bf2589bd81a98b56049f179d8a57d991a3ade67c024ff065f11c7a52bdb9b41ebe860bd6d4d136458c2c333
@@ -1,3 +1,3 @@
1
1
  Applinks::Config.config do |config|
2
- config.debug= true
2
+
3
3
  end
@@ -1,5 +1,8 @@
1
1
  module Applinks
2
2
  class Engine < ::Rails::Engine
3
3
  isolate_namespace Applinks
4
+ initializer "applinks" do |app|
5
+ ::ApplicationHelper.send :include, Applinks::ApplicationHelper
6
+ end
4
7
  end
5
8
  end
@@ -1,3 +1,3 @@
1
1
  module Applinks
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
data/lib/applinks.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require "applinks/version"
1
2
  require "applinks/engine"
2
3
  require "applinks/config"
3
4
  require "applinks/builder"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: applinks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stuart Jones
@@ -34,7 +34,6 @@ extra_rdoc_files: []
34
34
  files:
35
35
  - MIT-LICENSE
36
36
  - Rakefile
37
- - app/controllers/applinks/application_controller.rb
38
37
  - app/helpers/applinks/application_helper.rb
39
38
  - app/views/applinks/_head.html.erb
40
39
  - config/initializers/applinks.rb
@@ -43,7 +42,6 @@ files:
43
42
  - lib/applinks/config.rb
44
43
  - lib/applinks/engine.rb
45
44
  - lib/applinks/version.rb
46
- - lib/tasks/applinks_tasks.rake
47
45
  - test/applinks_test.rb
48
46
  - test/dummy/README.rdoc
49
47
  - test/dummy/Rakefile
@@ -1,4 +0,0 @@
1
- module Applinks
2
- class ApplicationController < ActionController::Base
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :applinks do
3
- # # Task goes here
4
- # end