trackler 2.0.5.10 → 2.0.5.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a4a09d238b30d68369e40d493a03b8f095a1803
4
- data.tar.gz: f5e9f063daeaf6f628c06eaa82147898c68ef380
3
+ metadata.gz: 24c87cd227b60be2c6fe6068ba7d3a7e4e108409
4
+ data.tar.gz: 44a9d217a705bf96e7e538232dcb5c5bc4046178
5
5
  SHA512:
6
- metadata.gz: 5428931a7a5b48c186986179706882feeb43c2f422e20d177bd132256888b0caa72ec7a8a22679ba178b85dd629a8487889856875bcdd5dd1dceb307864c9618
7
- data.tar.gz: a63b460b8a05caff7fd55f4e4310b933188426ef3e685dbbd08cbae30c58bdaa12d1b8e0eb69b548c93623c4edce95c3bd88575394ffe3d7a891f4cd640367b8
6
+ metadata.gz: df6e78d8d5d686303a37dd2be025a224c2ab7e84f6a0680b3f909afeb4295e146b473ad449196abe6ea716d771fd8470bafba64b25f6e976e06d6b3cd54bca7a
7
+ data.tar.gz: eb131c2de49d313197e12f0ceb6aefb6ac067a2115b22c1996cd7e5e2576039174225e030b3882dc7194e1921752f6de234fb5cc4d1f2045a56541bd798e5699
@@ -1,3 +1,3 @@
1
1
  module Trackler
2
- VERSION = "2.0.5.10"
2
+ VERSION = "2.0.5.11"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  ## Learning F#
2
2
 
3
3
  ### Websites
4
- * The [F# for Fun and Profit](http://fsharpforfunandprofit.com/) website has tons of great F# content. From a gentle introduction to the world of F# to more advanced concepts, it's all covered. Bonus: all content is also available as an [eBook](https://www.gitbook.com/book/swlaschin/fsharpforfunandprofit/details).
4
+ * The [F# for Fun and Profit](http://fsharpforfunandprofit.com/) website has tons of great F# content. From a [gentle introduction](http://fsharpforfunandprofit.com/posts/key-concepts/) to the world of F# to more advanced concepts, it's all covered. Bonus: all content is also available as an [eBook](https://www.gitbook.com/book/swlaschin/fsharpforfunandprofit/details).
5
5
  * The [Try F#](http://www.tryfsharp.org/Learn) website has a great [interactive tutorial](http://www.tryfsharp.org/Learn/getting-started) that allows you to write, compile and execute F# code directly in the browser.
6
6
  * The [F# Foundation](http://fsharp.org/) is a non-profit organisation which aim is to promote F#. The website has lots of links to great F# content. Perhaps even more interesting is their [mentorship program](http://fsharp.org/mentorship/index.html), where you can apply to learn F# from an experienced F# mentor.
7
7
 
@@ -10,6 +10,7 @@
10
10
  * [F# - Why you should give an F](https://www.youtube.com/watch?v=kKkFabSzZvU) has Daniel Chambers give a sweet introduction into F#, neatly highlighting most F#'s features.
11
11
  * [Dr. Don Syme - Introduction to F#](https://channel9.msdn.com/Series/C9-Lectures-Dr-Don-Syme-Introduction-to-F-/C9-Lectures-Dr-Don-Syme-Introduction-to-F-1-of-3) has Don Syme, the designer of F#, give an introduction to F#.
12
12
  * If you're a C# developer, you might like [F# for C# developers](https://vimeo.com/78908217) by Phil Trelford.
13
+ * [PluralSight](https://www.pluralsight.com/) has several [great](https://www.pluralsight.com/courses/fsintro) [introduction](https://www.pluralsight.com/courses/fsharp-jumpstart) [courses](https://www.pluralsight.com/courses/fsharp-fundamentals). The downside: PluralSight is a paid service, but you can request a [free trial](https://www.pluralsight.com/pricing).
13
14
 
14
15
  ### Books
15
16
  * [Beginning F# 4.0](https://books.google.nl/books?id=puQgDAAAQBAJ&redir_esc=y)
@@ -12,6 +12,7 @@
12
12
 
13
13
  ### Videos
14
14
  * The [Community for F#](https://www.youtube.com/channel/UCCQPh0mSMaVpRcKUeWPotSA/feed) YouTube channel has got lots of F# videos.
15
+ * There are several great [F# courses](https://www.pluralsight.com/search?q=*&categories=course&roles=software-development%7C&subjects=f%23) on PluralSight. The downside: PluralSight is a paid service, but you can request a [free trial](https://www.pluralsight.com/pricing).
15
16
 
16
17
  ### Books
17
18
  * [Expert F# 4.0](https://books.google.nl/books?id=L_0PogEACAAJ&dq=isbn:1484207424&hl=en&sa=X&ved=0ahUKEwjs__-hi43RAhWIMFAKHUJPASwQ6AEIHDAA)
@@ -4,7 +4,7 @@ import org.junit.Ignore;
4
4
  import static org.junit.Assert.assertTrue;
5
5
  import static org.junit.Assert.assertFalse;
6
6
 
7
- public class PangramTest {
7
+ public class PangramsTest {
8
8
 
9
9
 
10
10
  @Test
@@ -5,7 +5,7 @@ require 'minitest/autorun'
5
5
  require 'minitest/pride'
6
6
 
7
7
  SimpleCov.start do
8
- add_filter '/tests/'
8
+ add_filter '/test/'
9
9
  add_group 'Utilities' do |file|
10
10
  !(file.filename =~ /_cases\.rb$/)
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trackler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.5.10
4
+ version: 2.0.5.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katrina Owen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-25 00:00:00.000000000 Z
11
+ date: 2016-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip
@@ -3622,7 +3622,7 @@ files:
3622
3622
  - tracks/java/exercises/pangram/build.gradle
3623
3623
  - tracks/java/exercises/pangram/src/example/java/Pangrams.java
3624
3624
  - tracks/java/exercises/pangram/src/main/java/.keep
3625
- - tracks/java/exercises/pangram/src/test/java/PangramTest.java
3625
+ - tracks/java/exercises/pangram/src/test/java/PangramsTest.java
3626
3626
  - tracks/java/exercises/pascals-triangle/build.gradle
3627
3627
  - tracks/java/exercises/pascals-triangle/src/example/java/PascalsTriangle.java
3628
3628
  - tracks/java/exercises/pascals-triangle/src/main/java/.keep