galapagos_mobile 0.0.2 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,3 +1,6 @@
1
1
  pkg/*
2
2
  *.gem
3
3
  .bundle
4
+ pkg
5
+ vender
6
+ Gemfile.lock
data/Gemfile CHANGED
@@ -1,3 +1,7 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  gemspec
4
+
5
+ group :development do
6
+ gem 'devise', '>= 1.1.5'
7
+ end
@@ -4,7 +4,7 @@ require "galapagos_mobile/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "galapagos_mobile"
7
- s.version = GalapagosMobile::VERSION
7
+ s.version = GalapagosMobile::VERSION.dup
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ["Kosuke Matsuda"]
10
10
  s.email = ["hi@matsuda.me"]
@@ -20,4 +20,5 @@ Gem::Specification.new do |s|
20
20
  s.require_paths = ["lib"]
21
21
 
22
22
  s.date = %q{2011-02-17}
23
+ s.add_dependency("jpmobile", ">= 0.1.4")
23
24
  end
@@ -70,10 +70,9 @@ module ActionDispatch::Routing
70
70
  # need devise_for mappings already declared to create filters and helpers.
71
71
  def finalize_with_galapagos_mobile!
72
72
  finalize_without_galapagos_mobile!
73
+ ::Devise::FailureApp.send :include, GalapagosMobile::Devise::FailureApp
73
74
  ActionController::Base.send :include, GalapagosMobile::Devise::Controllers::Helpers
74
75
  end
75
76
  alias_method_chain :finalize!, :galapagos_mobile
76
77
  end
77
78
  end
78
-
79
- ::Devise::FailureApp.send :include, GalapagosMobile::Devise::FailureApp
@@ -1,3 +1,3 @@
1
1
  module GalapagosMobile
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: galapagos_mobile
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.2
5
+ version: 0.0.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Kosuke Matsuda
@@ -12,8 +12,18 @@ cert_chain: []
12
12
 
13
13
  date: 2011-02-17 00:00:00 +09:00
14
14
  default_executable:
15
- dependencies: []
16
-
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: jpmobile
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 0.1.4
25
+ type: :runtime
26
+ version_requirements: *id001
17
27
  description: A Ruby on Rails plugin to patch jpmobile
18
28
  email:
19
29
  - hi@matsuda.me