authic_client 0.0.1 → 0.0.2
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.
- data/app/controllers/authic_client/sessions_controller.rb +1 -1
- data/lib/authic_client/version.rb +1 -1
- data/lib/generators/authic/install_generator.rb +13 -0
- data/{config/initializers → lib/generators/templates}/authic.rb +0 -0
- data/{config/initializers → lib/generators/templates}/omniauth.rb +0 -0
- data/test/dummy/config/initializers/authic.rb +6 -0
- data/test/dummy/config/initializers/omniauth.rb +6 -0
- data/test/dummy/log/development.log +2104 -0
- metadata +11 -6
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: authic_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- authic
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-11-01 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -59,8 +59,6 @@ files:
|
|
59
59
|
- app/controllers/authic_client/sessions_controller.rb
|
60
60
|
- app/helpers/authic_client/application_helper.rb
|
61
61
|
- app/models/authic_user_mixin.rb
|
62
|
-
- config/initializers/authic.rb
|
63
|
-
- config/initializers/omniauth.rb
|
64
62
|
- config/routes.rb
|
65
63
|
- lib/authic_client/engine.rb
|
66
64
|
- lib/authic_client/version.rb
|
@@ -68,7 +66,10 @@ files:
|
|
68
66
|
- lib/generators/active_record/authic_generator.rb
|
69
67
|
- lib/generators/active_record/templates/migration.rb
|
70
68
|
- lib/generators/active_record/templates/migration_existing.rb
|
69
|
+
- lib/generators/authic/install_generator.rb
|
71
70
|
- lib/generators/authic/orm_helpers.rb
|
71
|
+
- lib/generators/templates/authic.rb
|
72
|
+
- lib/generators/templates/omniauth.rb
|
72
73
|
- lib/tasks/authic_client_tasks.rake
|
73
74
|
- MIT-LICENSE
|
74
75
|
- Rakefile
|
@@ -92,9 +93,11 @@ files:
|
|
92
93
|
- test/dummy/config/environments/development.rb
|
93
94
|
- test/dummy/config/environments/production.rb
|
94
95
|
- test/dummy/config/environments/test.rb
|
96
|
+
- test/dummy/config/initializers/authic.rb
|
95
97
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
96
98
|
- test/dummy/config/initializers/inflections.rb
|
97
99
|
- test/dummy/config/initializers/mime_types.rb
|
100
|
+
- test/dummy/config/initializers/omniauth.rb
|
98
101
|
- test/dummy/config/initializers/secret_token.rb
|
99
102
|
- test/dummy/config/initializers/session_store.rb
|
100
103
|
- test/dummy/config/initializers/wrap_parameters.rb
|
@@ -145,7 +148,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
145
148
|
requirements:
|
146
149
|
- - ">="
|
147
150
|
- !ruby/object:Gem::Version
|
148
|
-
hash:
|
151
|
+
hash: 3364850827576231942
|
149
152
|
segments:
|
150
153
|
- 0
|
151
154
|
version: "0"
|
@@ -154,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
157
|
requirements:
|
155
158
|
- - ">="
|
156
159
|
- !ruby/object:Gem::Version
|
157
|
-
hash:
|
160
|
+
hash: 3364850827576231942
|
158
161
|
segments:
|
159
162
|
- 0
|
160
163
|
version: "0"
|
@@ -185,9 +188,11 @@ test_files:
|
|
185
188
|
- test/dummy/config/environments/development.rb
|
186
189
|
- test/dummy/config/environments/production.rb
|
187
190
|
- test/dummy/config/environments/test.rb
|
191
|
+
- test/dummy/config/initializers/authic.rb
|
188
192
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
189
193
|
- test/dummy/config/initializers/inflections.rb
|
190
194
|
- test/dummy/config/initializers/mime_types.rb
|
195
|
+
- test/dummy/config/initializers/omniauth.rb
|
191
196
|
- test/dummy/config/initializers/secret_token.rb
|
192
197
|
- test/dummy/config/initializers/session_store.rb
|
193
198
|
- test/dummy/config/initializers/wrap_parameters.rb
|