mustache 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ * Chris Wanstrath
2
+ * Francesc Esplugas
3
+ * Magnus Holm
4
+ * Nicolas Sanguinetti
5
+ * Jan-Erik Rediger
data/Rakefile CHANGED
@@ -31,3 +31,8 @@ begin
31
31
  rescue LoadError
32
32
  puts "sdoc support not enabled. Please gem install sdoc-helpers."
33
33
  end
34
+
35
+ desc "Push a new version to Gemcutter"
36
+ task :publish => [ :gemspec, :build ] do
37
+ exec "gem push pkg/mustache-#{Mustache::Version}.gem"
38
+ end
@@ -40,7 +40,7 @@ class Mustache
40
40
  instance = Mustache.new
41
41
  end
42
42
 
43
- instance_variable_names.each do |name|
43
+ instance_variables.each do |name|
44
44
  instance.instance_variable_set(name, instance_variable_get(name))
45
45
  end
46
46
 
@@ -1,3 +1,3 @@
1
1
  class Mustache
2
- Version = '0.1.1'
2
+ Version = '0.1.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mustache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Wanstrath
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-07 00:00:00 -07:00
12
+ date: 2009-10-08 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -24,6 +24,7 @@ extra_rdoc_files:
24
24
  - README.md
25
25
  files:
26
26
  - .gitignore
27
+ - CONTRIBUTORS
27
28
  - LICENSE
28
29
  - README.md
29
30
  - Rakefile