sangha_accessibility 0.1.5 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23d77e37ff0e6156049e32fa6a30c81250a98c1e
4
- data.tar.gz: 1f7098f1b14d9473be4b1b189ef13ce5b680fee9
3
+ metadata.gz: 0ba1e7ccd3d930dd4c9f7a5eff129e5fdf666535
4
+ data.tar.gz: 1927be24ec56b40573abc35cc0be887f1266963d
5
5
  SHA512:
6
- metadata.gz: 9eec5af21e104e91ff2df1330a94c712ff8ddde79d36d1ffaaa9b19ccec997929be7b25e7a97a3d82c3bca0dea93d4f713f9c3af14e24928bede5d8e3517272c
7
- data.tar.gz: d5197f1fd3508384d44757931af511372f501b68180559da875a6b0d5044fdb9a5615f8459c964ea61e4744a415183108c9f25559aa310421cb144131aa90d76
6
+ metadata.gz: 72889859f4cf9b9587ef56f612565219ed7f1ec6e112c928c1b0da82b6a24b1908b5eb4488e50c7f8aea67e642f113050da7cac2fd427a36d5d800198d9e7c46
7
+ data.tar.gz: 0958efe4d8ce6dfd8f1efd58451318aba7f43ad9736204dca3fed079738ab7c26d3a3f547f682840f4659de98495f04f96baac5c20914288b34810f62fb77c62
@@ -1,21 +1,21 @@
1
- module SanghaAccessibility
2
- module ActionView
3
- module Helpers
4
- class PGen
5
- include ActionView::Helpers
6
- include ActionView::Context
7
- include ActionView::Helpers::CaptureHelper
8
- include ActionView::Helpers::TagHelper
9
-
10
- extend ActionView::Helpers
11
- extend ActionView::Context
12
- extend ActionView::Helpers::CaptureHelper
13
- extend ActionView::Helpers::TagHelper
14
-
15
- def p_for(value)
16
- content_tag(:p, value)
17
- end
18
- end
19
- end
20
- end
21
- end
1
+ module SanghaAccessibility
2
+ module ActionView
3
+ module Helpers
4
+ class PGen
5
+ include ActionView::Helpers
6
+ include ActionView::Context
7
+ include ActionView::Helpers::CaptureHelper
8
+ include ActionView::Helpers::TagHelper
9
+
10
+ extend ActionView::Helpers
11
+ extend ActionView::Context
12
+ extend ActionView::Helpers::CaptureHelper
13
+ extend ActionView::Helpers::TagHelper
14
+
15
+ def p_for(value)
16
+ content_tag(:p, value)
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -1,14 +1,16 @@
1
- module SanghaAccessibility
2
- class Railtie < ::Rails::Railtie
3
- initializer "sangha_accessibility.configure_view_controller" do |app|
4
- ActiveSupport.on_load :action_view do
5
- include SanghaAccessibility::ActionView::Helpers
6
- end
7
-
8
- ActiveSupport.on_load :action_controller do
9
- include SanghaAccessibility::ActionController::Filters
10
- end
11
- end
12
- end
13
- end
14
-
1
+ require 'rails/railtie'
2
+ module SanghaAccessibility
3
+ class Railtie < ::Rails::Railtie
4
+ initializer "sangha_accessibility.action_view" do |app|
5
+ ActiveSupport.on_load :action_view do
6
+ require "sangha_accessibility/action_view/helpers"
7
+ include SanghaAccessibility::ActionView::Helpers
8
+ end
9
+
10
+ ActiveSupport.on_load :action_controller do
11
+ include SanghaAccessibility::ActionController::Filters
12
+ end
13
+ end
14
+ end
15
+ end
16
+
@@ -1,3 +1,3 @@
1
- module SanghaAccessibility
2
- VERSION = "0.1.5"
3
- end
1
+ module SanghaAccessibility
2
+ VERSION = "0.1.6"
3
+ end
@@ -1,10 +1,10 @@
1
- require 'sangha_accessibility/version'
2
- require 'action_view/helpers'
3
-
4
- module SanghaAccessibility
5
- extend ActiveSupport::Autoload
6
-
7
- autoload :Helpers
8
- end
9
-
10
- require 'sangha_accessibility/railtie' if defined?(Rails)
1
+ require 'sangha_accessibility/version'
2
+ require 'action_view/helpers'
3
+
4
+ module SanghaAccessibility
5
+ extend ActiveSupport::Autoload
6
+
7
+ autoload :Helpers
8
+ end
9
+
10
+ require 'sangha_accessibility/railtie' if defined?(Rails)
@@ -1,29 +1,29 @@
1
- # coding: utf-8
2
- # lib = File.expand_path('../lib', __FILE__)
3
- # $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- $:.push File.expand_path("../lib", __FILE__)
5
- require 'sangha_accessibility/version'
6
-
7
- Gem::Specification.new do |spec|
8
- spec.name = "sangha_accessibility"
9
- spec.version = SanghaAccessibility::VERSION
10
- spec.platform = Gem::Platform::RUBY
11
- spec.authors = ["Sanghapal Bhowate"]
12
- spec.email = ["sanghapalbhowate89@gmail.com"]
13
- spec.description = %q{trial gem}
14
- spec.summary = %q{Write a gem summary}
15
- spec.homepage = "http://github.com/Sanghapal/sangha_accessibility"
16
- spec.license = "MIT"
17
-
18
- spec.files = `git ls-files`.split($/)
19
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
21
- spec.require_paths = ["lib"]
22
-
23
- spec.rubyforge_project = "sangha_accessibility"
24
-
25
- spec.add_development_dependency "bundler", "~> 1.3"
26
- spec.add_development_dependency "rake"
27
- spec.add_dependency('activemodel', '~> 4.0')
28
- spec.add_dependency('actionpack', '~> 4.0')
29
- end
1
+ # coding: utf-8
2
+ # lib = File.expand_path('../lib', __FILE__)
3
+ # $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ $:.push File.expand_path("../lib", __FILE__)
5
+ require 'sangha_accessibility/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = "sangha_accessibility"
9
+ spec.version = SanghaAccessibility::VERSION
10
+ spec.platform = Gem::Platform::RUBY
11
+ spec.authors = ["Sanghapal Bhowate"]
12
+ spec.email = ["sanghapalbhowate89@gmail.com"]
13
+ spec.description = %q{trial gem}
14
+ spec.summary = %q{Write a gem summary}
15
+ spec.homepage = "http://github.com/Sanghapal/sangha_accessibility"
16
+ spec.license = "MIT"
17
+
18
+ spec.files = `git ls-files`.split($/)
19
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.rubyforge_project = "sangha_accessibility"
24
+
25
+ spec.add_development_dependency "bundler", "~> 1.3"
26
+ spec.add_development_dependency "rake"
27
+ spec.add_dependency('activemodel', '~> 4.0')
28
+ spec.add_dependency('actionpack', '~> 4.0')
29
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sangha_accessibility
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sanghapal Bhowate
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-19 00:00:00.000000000 Z
11
+ date: 2014-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler