screeninator 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ 1.0.3 / 2011-07-07
2
+ ------------------
3
+
4
+ * 1 bugfix
5
+
6
+ * fix existing aliases being deleted when creating a new project
7
+
1
8
  1.0.2 / 2011-04-04
2
9
  ------------------
3
10
 
data/README.md CHANGED
@@ -75,35 +75,9 @@ Example
75
75
  Other Commands
76
76
  --------------
77
77
 
78
- $ screeninator copy existing_project new_project
79
-
80
- Copy an existing project.
81
-
82
-
83
- $ screeninator update_scripts
84
-
85
- Re-create the screen scripts and aliases from the configs. Use this only if you edit your project configs outside of screeninator, i.e. not using "screeninator open xxx".
86
-
87
-
88
- $ screeninator list
89
-
90
- List all the projects you have configured
91
-
92
- $ screeninator delete project_name
93
-
94
- Remove a project
95
-
96
- $ screeninator implode
97
-
98
- Remove all screeninator configs, aliases and scripts.
99
-
100
-
101
- Customization
102
- -------------
103
- In order to customize the starting screen configuration that is used as
104
- the .screen template for each project create a file in
105
- .screeninator/scripts/screen\_config.screen and copy your template info
106
- (including ERB) in to it.
78
+ For a list of available commands:
79
+
80
+ $ screeninator help
107
81
 
108
82
  Questions? Comments? Feature Request?
109
83
  -------------------------------------
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.3
@@ -106,11 +106,9 @@ module Screeninator
106
106
  begin
107
107
  path = File.basename(path, '.yml')
108
108
  config_name = path.split("/").last
109
- next unless args.empty? || args.include?(config_name)
110
109
 
111
110
  begin; FileUtils.rm("#{path}.screen"); rescue; end
112
111
 
113
- puts "updating #{config_name}"
114
112
  aliases << Screeninator::ConfigWriter.new(path).write!
115
113
  rescue ArgumentError => e
116
114
  puts e
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: screeninator
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.2
5
+ version: 1.0.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jon Druse
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-04-04 00:00:00 -07:00
13
+ date: 2011-07-07 00:00:00 -07:00
14
14
  default_executable: screeninator
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency