hubstats 0.0.5 → 0.0.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 +8 -8
- data/lib/hub_helper.rb +2 -2
- data/lib/hubstats/github_api.rb +4 -5
- data/lib/hubstats/version.rb +1 -1
- data/test/dummy/db/migrate/20140702142614_create_hubstats_pull_requests.hubstats.rb +40 -0
- data/test/dummy/db/migrate/20140702142615_create_hubstats_users.hubstats.rb +25 -0
- data/test/dummy/db/migrate/20140702142616_create_hubstats_comments.hubstats.rb +27 -0
- data/test/dummy/db/migrate/20140702142617_create_hubstats_repos.hubstats.rb +48 -0
- data/test/dummy/db/schema.rb +1 -1
- data/test/dummy/log/development.log +3464 -0
- metadata +10 -4
- data/test/dummy/tmp/pids/server.pid +0 -1
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hubstats
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elliot Hursh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -175,6 +175,10 @@ files:
|
|
175
175
|
- test/dummy/config/octokit.yml
|
176
176
|
- test/dummy/config/routes.rb
|
177
177
|
- test/dummy/db/development.sqlite3
|
178
|
+
- test/dummy/db/migrate/20140702142614_create_hubstats_pull_requests.hubstats.rb
|
179
|
+
- test/dummy/db/migrate/20140702142615_create_hubstats_users.hubstats.rb
|
180
|
+
- test/dummy/db/migrate/20140702142616_create_hubstats_comments.hubstats.rb
|
181
|
+
- test/dummy/db/migrate/20140702142617_create_hubstats_repos.hubstats.rb
|
178
182
|
- test/dummy/db/schema.rb
|
179
183
|
- test/dummy/db/test.sqlite3
|
180
184
|
- test/dummy/log/development.log
|
@@ -329,7 +333,6 @@ files:
|
|
329
333
|
- test/dummy/tmp/cache/assets/E37/920/sprockets%2Fdecfac8e297916ee0fd0b3ac3ec9b478
|
330
334
|
- test/dummy/tmp/cache/assets/E47/EB0/sprockets%2F76ebce7bcd98e7b75ef79eec62bb9c31
|
331
335
|
- test/dummy/tmp/cache/assets/E56/230/sprockets%2F58da9342a714fbced3dd9cab5dae22bf
|
332
|
-
- test/dummy/tmp/pids/server.pid
|
333
336
|
- test/functional/hubstats/splash_controller_test.rb
|
334
337
|
- test/hubstats_test.rb
|
335
338
|
- test/integration/navigation_test.rb
|
@@ -383,6 +386,10 @@ test_files:
|
|
383
386
|
- test/dummy/config/routes.rb
|
384
387
|
- test/dummy/config.ru
|
385
388
|
- test/dummy/db/development.sqlite3
|
389
|
+
- test/dummy/db/migrate/20140702142614_create_hubstats_pull_requests.hubstats.rb
|
390
|
+
- test/dummy/db/migrate/20140702142615_create_hubstats_users.hubstats.rb
|
391
|
+
- test/dummy/db/migrate/20140702142616_create_hubstats_comments.hubstats.rb
|
392
|
+
- test/dummy/db/migrate/20140702142617_create_hubstats_repos.hubstats.rb
|
386
393
|
- test/dummy/db/schema.rb
|
387
394
|
- test/dummy/db/test.sqlite3
|
388
395
|
- test/dummy/log/development.log
|
@@ -539,7 +546,6 @@ test_files:
|
|
539
546
|
- test/dummy/tmp/cache/assets/E37/920/sprockets%2Fdecfac8e297916ee0fd0b3ac3ec9b478
|
540
547
|
- test/dummy/tmp/cache/assets/E47/EB0/sprockets%2F76ebce7bcd98e7b75ef79eec62bb9c31
|
541
548
|
- test/dummy/tmp/cache/assets/E56/230/sprockets%2F58da9342a714fbced3dd9cab5dae22bf
|
542
|
-
- test/dummy/tmp/pids/server.pid
|
543
549
|
- test/functional/hubstats/splash_controller_test.rb
|
544
550
|
- test/hubstats_test.rb
|
545
551
|
- test/integration/navigation_test.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
29753
|