File tree 3 files changed +40
-1
lines changed
3 files changed +40
-1
lines changed Original file line number Diff line number Diff line change
1
+ ### 2.0.0
2
+
3
+ * Fixed and improved new module-spec pair creation
4
+
5
+ ### 2014-11-07
6
+
7
+ * Minor typo / quotes fixes
8
+
1
9
### 2014-11-06
2
10
3
11
* Package switched to use tag release
Original file line number Diff line number Diff line change 1
1
{
2
2
"1.2014.1106" : " messages/1.2014.1106.txt" ,
3
3
"1.2014.1108" : " messages/1.2014.1108.txt" ,
4
- "1.2014.1125" : " messages/1.2014.1125.txt"
4
+ "1.2014.1125" : " messages/1.2014.1125.txt" ,
5
+ "2.0.0" : " messages/2.0.0.txt"
5
6
}
Original file line number Diff line number Diff line change
1
+ module-spec pair creation seemed to have never worked in ST3
2
+
3
+ RSpec plugin v2 is shipped with the fixed and improved new module-spec pair creation
4
+
5
+ * Command Palette -> RSpec: create new module
6
+ * input the name of the class with optional namespace (see below)
7
+
8
+ * input `A/B/C` or `A::B::C` will generate
9
+
10
+ *c.rb*
11
+
12
+ ```ruby
13
+ module A
14
+ module B
15
+ class C
16
+
17
+ end
18
+ end
19
+ end
20
+ ```
21
+
22
+ *c_spec.rb*
23
+
24
+ ```ruby
25
+ require 'spec_helper'
26
+
27
+ describe A::B::C do
28
+
29
+ end
30
+ ```
You can’t perform that action at this time.
0 commit comments