ubiquo 0.5.3 → 0.5.4
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/VERSION +1 -1
- data/lib/ubiquo/template.erb +15 -0
- data/ubiquo.gemspec +2 -2
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.4
|
data/lib/ubiquo/template.erb
CHANGED
|
@@ -88,6 +88,21 @@ Ubiquo::Config.add do |config|
|
|
|
88
88
|
end
|
|
89
89
|
end
|
|
90
90
|
CODE
|
|
91
|
+
|
|
92
|
+
# Rakefile to avoid deprecation warnings for Rdoc
|
|
93
|
+
file 'Rakefile', <<-CODE
|
|
94
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
|
95
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
|
96
|
+
|
|
97
|
+
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
|
|
98
|
+
|
|
99
|
+
require 'rake'
|
|
100
|
+
require 'rake/testtask'
|
|
101
|
+
require 'rdoc/task'
|
|
102
|
+
|
|
103
|
+
require 'tasks/rails'
|
|
104
|
+
CODE
|
|
105
|
+
|
|
91
106
|
# Initializer for ubiquo crontab
|
|
92
107
|
<% if @opts[:template] == :edge %>
|
|
93
108
|
initializer 'ubiquo_crontab.rb', <<-CODE
|
data/ubiquo.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{ubiquo}
|
|
8
|
-
s.version = "0.5.
|
|
8
|
+
s.version = "0.5.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Albert Callarisa", "Bernat Foj", "Eric Garc\303\255a", "Felip Ladr\303\263n", "Antoni Reina", "Ramon Salvad\303\263", "Arnau S\303\241nchez"]
|
|
12
|
-
s.date = %q{2011-
|
|
12
|
+
s.date = %q{2011-10-18}
|
|
13
13
|
s.default_executable = %q{ubiquo}
|
|
14
14
|
s.description = %q{This gem provides a command-line interface to speed up the creation of ubiquo based apps.}
|
|
15
15
|
s.email = %q{rsalvado@gnuine.com}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ubiquo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 3
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 0.5.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.5.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Albert Callarisa
|
|
@@ -21,7 +21,7 @@ autorequire:
|
|
|
21
21
|
bindir: bin
|
|
22
22
|
cert_chain: []
|
|
23
23
|
|
|
24
|
-
date: 2011-
|
|
24
|
+
date: 2011-10-18 00:00:00 +02:00
|
|
25
25
|
default_executable: ubiquo
|
|
26
26
|
dependencies:
|
|
27
27
|
- !ruby/object:Gem::Dependency
|