about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorDaigo 3 Dango <zunda@users.noreply.github.com>2017-08-22 20:54:19 +0000
committerEugen Rochko <eugen@zeonfederated.com>2017-08-22 22:54:19 +0200
commit696c2c6f2f3338df121cf17389478da9ecab11af (patch)
tree957a1e6d30482048ea08e617bec77e784b15896b /lib
parent5927b43c0fc74e66cd3a882b565ea70236559c02 (diff)
Add Mastodon::Source.url (#4643)
* Add Mastodon::Source.url

* Update spec

* Refactor

Move things frmo Mastodon::Source to Mastodon::Version
Diffstat (limited to 'lib')
-rw-r--r--lib/mastodon/version.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb
index 381e9aac9..fcca875d9 100644
--- a/lib/mastodon/version.rb
+++ b/lib/mastodon/version.rb
@@ -31,5 +31,22 @@ module Mastodon
     def to_s
       [to_a.join('.'), flags].join
     end
+
+    def source_base_url
+      'https://github.com/tootsuite/mastodon'
+    end
+
+    # specify git tag or commit hash here
+    def source_tag
+      nil
+    end
+
+    def source_url
+      if source_tag
+        "#{source_base_url}/tree/#{source_tag}"
+      else
+        source_base_url
+      end
+    end
   end
 end