File tree 3 files changed +19
-0
lines changed
3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ Fast Method Source changelog
2
+ ============================
3
+
4
+ ### v0.1.0 (June 9, 2015)
5
+
6
+ * Initial release
Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ Gem::Specification.new do |s|
17
17
ext/fast_method_source/node.h
18
18
lib/fast_method_source.rb
19
19
lib/fast_method_source/core_ext.rb
20
+ VERSION
21
+ README.md
22
+ CHANGELOG.md
23
+ LICENCE.txt
20
24
]
21
25
s . extensions = [ 'ext/fast_method_source/extconf.rb' ]
22
26
s . platform = Gem ::Platform ::RUBY
Original file line number Diff line number Diff line change 1
1
require_relative 'fast_method_source/fast_method_source'
2
2
3
3
module FastMethodSource
4
+ # The VERSION file must be in the root directory of the library.
5
+ VERSION_FILE = File . expand_path ( '../../VERSION' , __FILE__ )
6
+
7
+ VERSION = File . exist? ( VERSION_FILE ) ?
8
+ File . read ( VERSION_FILE ) . chomp : '(could not find VERSION file)'
9
+
10
+ # The root path of Pry Theme source code.
11
+ ROOT = File . expand_path ( File . dirname ( __FILE__ ) )
12
+
4
13
class Method
5
14
include MethodExtensions
6
15
You can’t perform that action at this time.
0 commit comments