rails_apps_pages 0.5.7 → 0.5.8

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: c1c11e41645c4a387c819a55da0f91066ae2873f
4
- data.tar.gz: c8b903c69b38096c6968e66636ed75c0a3e51912
3
+ metadata.gz: eaa6c3e6aafb3ae2500a3cc4bb9263d67b7e06b4
4
+ data.tar.gz: cce4fe04b594ce1984409c16186daddc0607f190
5
5
  SHA512:
6
- metadata.gz: 0c99797da2d68abb0661f00f088577f7ae553e1345de57f22051c9ab3803c8bf4b4211d399875b1883a14b77e41e844a498ab911f35781f143503c0e9210df70
7
- data.tar.gz: 8d9359f086a7b5c884f43726e7be31a7b1c21102499175793700c7e348faa16812d3c22f6983fabe62e2238dde184d59d1ff187f460120d45dfd06ef22fc7575
6
+ metadata.gz: c90ccdc033d727c692b57b14511438a4931b758fa4e8452d2ffe8392b532f2b08b359e91b57391a8a425d58e46fcedf143f78ed9489700493058a71914c91a93
7
+ data.tar.gz: 0a3e31f66e849cb1c3900edb5845ee170e379186cda5d682ba6421f82ffad0ab9d8eda41ec6648310fe6bd07aa93b88d43496b19eeded5c9cf4af8ac186b1d7c
data/CHANGELOG.textile CHANGED
@@ -1,5 +1,9 @@
1
1
  h1. CHANGELOG
2
2
 
3
+ h3. 0.5.8 June 26, 2014
4
+
5
+ * don't set routes for OmniAuth applications
6
+
3
7
  h3. 0.5.7 June 26, 2014
4
8
 
5
9
  * remove 'capture email' feature from rails-omniauth example application
@@ -25,8 +25,6 @@ module Pages
25
25
  def create_omniauth_pages
26
26
  return unless File.exists?('config/initializers/omniauth.rb')
27
27
  copy_file 'omniauth/users_controller.rb', 'app/controllers/users_controller.rb'
28
- route = ' resources :users, :only => [:index, :show]'
29
- inject_into_file 'config/routes.rb', route + "\n", :after => "root :to => \"visitors#index\"\n"
30
28
  copy_file 'omniauth/_user.html.erb', 'app/views/users/_user.html.erb'
31
29
  copy_file 'omniauth/show.html.erb', 'app/views/users/show.html.erb'
32
30
  end
@@ -1,3 +1,3 @@
1
1
  module RailsAppsPages
2
- VERSION = "0.5.7"
2
+ VERSION = "0.5.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_apps_pages
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.7
4
+ version: 0.5.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Kehoe