summaryrefslogtreecommitdiffhomepage
path: root/Gemfile
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2013-04-12 08:44:53 +0900
committerRandy Morgan <[email protected]>2013-04-12 08:45:23 +0900
commit21fd9b466e86d1352983ae3e13c163cd3517d8a9 (patch)
tree7ea4ed89dec1309a44210c6a885ab35dde513ae1 /Gemfile
parent23cc21d13f9e761d110d466428d89389d03aa61a (diff)
downloadcaxlsx-21fd9b466e86d1352983ae3e13c163cd3517d8a9.tar.gz
caxlsx-21fd9b466e86d1352983ae3e13c163cd3517d8a9.zip
Updated gemfile source and added ruby-prof
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Gemfile b/Gemfile
index 8793ce79..1b2e714d 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,7 +1,9 @@
-source :rubygems
+source "https://rubygems.org"
gemspec
group :test do
- gem 'rake', '0.8.7' if RUBY_VERSION == "1.9.2"
- gem 'rake', '>= 0.8.7' unless RUBY_VERSION == "1.9.2"
+ gem "rake", "0.8.7" if RUBY_VERSION == "1.9.2"
+ gem "rake", ">= 0.8.7" unless RUBY_VERSION == "1.9.2"
end
+
+gem 'ruby-prof'