spyme 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/spyme/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +4 -36
- data/test/dummy/log/test.log +90 -4027
- metadata +33 -33
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spyme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juani Villarejo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -122,53 +122,53 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
122
|
version: '0'
|
123
123
|
requirements: []
|
124
124
|
rubyforge_project:
|
125
|
-
rubygems_version: 2.7.
|
125
|
+
rubygems_version: 2.7.3
|
126
126
|
signing_key:
|
127
127
|
specification_version: 4
|
128
128
|
summary: A Rails plugin that tracks and store browser geolocation position
|
129
129
|
test_files:
|
130
|
-
- test/test_helper.rb
|
131
130
|
- test/integration/spyme_test.rb
|
132
131
|
- test/controllers/application_helper_test.rb
|
133
132
|
- test/models/model_test.rb
|
134
|
-
- test/
|
135
|
-
- test/dummy/config.ru
|
136
|
-
- test/dummy/app/views/home/start.html.erb
|
137
|
-
- test/dummy/app/views/home/my_location.html.erb
|
138
|
-
- test/dummy/app/views/layouts/application.html.erb
|
139
|
-
- test/dummy/app/assets/stylesheets/application.css
|
140
|
-
- test/dummy/app/assets/javascripts/application.js
|
141
|
-
- test/dummy/app/controllers/application_controller.rb
|
142
|
-
- test/dummy/app/controllers/home_controller.rb
|
143
|
-
- test/dummy/app/helpers/application_helper.rb
|
144
|
-
- test/dummy/log/development.log
|
145
|
-
- test/dummy/log/test.log
|
133
|
+
- test/test_helper.rb
|
146
134
|
- test/dummy/public/422.html
|
147
135
|
- test/dummy/public/500.html
|
148
136
|
- test/dummy/public/favicon.ico
|
149
137
|
- test/dummy/public/404.html
|
150
|
-
- test/dummy/
|
138
|
+
- test/dummy/config.ru
|
151
139
|
- test/dummy/bin/rails
|
152
|
-
- test/dummy/bin/bundle
|
153
140
|
- test/dummy/bin/rake
|
154
|
-
- test/dummy/
|
155
|
-
- test/dummy/
|
156
|
-
- test/dummy/db/test.sqlite3
|
157
|
-
- test/dummy/config/secrets.yml
|
141
|
+
- test/dummy/bin/bundle
|
142
|
+
- test/dummy/Rakefile
|
158
143
|
- test/dummy/config/boot.rb
|
159
|
-
- test/dummy/config/environment.rb
|
160
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
161
|
-
- test/dummy/config/initializers/inflections.rb
|
162
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
163
|
-
- test/dummy/config/initializers/assets.rb
|
164
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
165
|
-
- test/dummy/config/initializers/mime_types.rb
|
166
|
-
- test/dummy/config/initializers/session_store.rb
|
167
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
168
144
|
- test/dummy/config/application.rb
|
169
|
-
- test/dummy/config/
|
145
|
+
- test/dummy/config/database.yml
|
170
146
|
- test/dummy/config/environments/production.rb
|
171
147
|
- test/dummy/config/environments/development.rb
|
172
148
|
- test/dummy/config/environments/test.rb
|
149
|
+
- test/dummy/config/secrets.yml
|
150
|
+
- test/dummy/config/environment.rb
|
173
151
|
- test/dummy/config/locales/en.yml
|
174
|
-
- test/dummy/config/
|
152
|
+
- test/dummy/config/routes.rb
|
153
|
+
- test/dummy/config/initializers/session_store.rb
|
154
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
155
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
156
|
+
- test/dummy/config/initializers/mime_types.rb
|
157
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
158
|
+
- test/dummy/config/initializers/inflections.rb
|
159
|
+
- test/dummy/config/initializers/assets.rb
|
160
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
161
|
+
- test/dummy/app/helpers/application_helper.rb
|
162
|
+
- test/dummy/app/assets/stylesheets/application.css
|
163
|
+
- test/dummy/app/assets/javascripts/application.js
|
164
|
+
- test/dummy/app/controllers/application_controller.rb
|
165
|
+
- test/dummy/app/controllers/home_controller.rb
|
166
|
+
- test/dummy/app/views/layouts/application.html.erb
|
167
|
+
- test/dummy/app/views/home/start.html.erb
|
168
|
+
- test/dummy/app/views/home/my_location.html.erb
|
169
|
+
- test/dummy/db/test.sqlite3
|
170
|
+
- test/dummy/db/development.sqlite3
|
171
|
+
- test/dummy/db/schema.rb
|
172
|
+
- test/dummy/log/test.log
|
173
|
+
- test/dummy/log/development.log
|
174
|
+
- test/dummy/README.rdoc
|