Created
November 7, 2012 19:43
-
-
Save emilsoman/4033896 to your computer and use it in GitHub Desktop.
Hello World gem - code for blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem "rspec" | |
| gem "bundler" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/Gemfile b/Gemfile | |
| index cc31892..3615507 100644 | |
| --- a/Gemfile | |
| +++ b/Gemfile | |
| @@ -1,2 +1,2 @@ | |
| -gem "rspec", "~> 2.8.0" | |
| -gem "bundler", "~> 1.0.0" | |
| \ No newline at end of file | |
| +gem "rspec" | |
| +gem "bundler" | |
| \ No newline at end of file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module HelloWorld | |
| def self.unleash | |
| puts "Hello World" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment