ubiquo 0.6.3 → 0.9.0.b1

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/Rakefile CHANGED
@@ -21,15 +21,8 @@ begin
21
21
  "Ramon Salvadó",
22
22
  "Arnau Sánchez"
23
23
  ]
24
- gem.add_dependency(%q<rails>, '= 2.3.14')
25
- gem.add_dependency(%q<i18n>, '< 0.5.0')
26
- gem.add_dependency(%q<lockfile>, '>= 1.4.3')
24
+ gem.add_dependency(%q<rails>, '~> 3.2.0.rc1')
27
25
  gem.add_dependency(%q<bundler>, '>= 1.0.10')
28
- gem.add_dependency(%q<rdoc>, '>= 2.4.2')
29
-
30
- gem.add_development_dependency(%q<mocha>, '>= 0.9.8')
31
- gem.add_development_dependency(%q<highline>, '>= 1.5.2')
32
- gem.add_development_dependency(%q<ya2yaml>, '>= 0.26')
33
26
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
34
27
  end
35
28
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.3
1
+ 0.9.0.b1
data/lib/ubiquo.rb CHANGED
@@ -13,7 +13,7 @@ module Ubiquo
13
13
  options = options.merge(env_opts) if env_opts
14
14
 
15
15
  # We need this because sometimes we upgrade edge but no stable
16
- options[:rails] = options[:template] == :edge ? '2.3.14' : '2.3.14'
16
+ options[:rails] = options[:template] == :edge ? '3.2.0.rc1' : '2.3.14'
17
17
 
18
18
  unless Gem.available?('rails', options[:rails])
19
19
  $stderr.puts "Sorry ubiquo needs rails #{options[:rails]} to work properly."
@@ -51,7 +51,7 @@ module Ubiquo
51
51
  file.write Generator.build_template(options, skeleton)
52
52
  end
53
53
  tpl.sync=true
54
- system("rails _#{options[:rails]}_ -m #{tpl.path} #{options[:app_name]}")
54
+ system("rails new #{options[:app_name]} -m #{tpl.path}")
55
55
  end
56
56
  end
57
57
  end
@@ -62,6 +62,10 @@ module Ubiquo
62
62
 
63
63
  o.separator "\nExtra options:"
64
64
 
65
+ o.on("--rvm", 'Create a new rvm gemset named as the project and use it in the bundle install') do
66
+ self[:rvm] = true
67
+ end
68
+
65
69
  o.on("--devel", 'For ubiquo developers (ssh acces to github repos)') do
66
70
  self[:devel] = true
67
71
  end
@@ -27,24 +27,6 @@ case choosen_plugin_set
27
27
  else selected_plugins = minimal_plugins + rest_plugins
28
28
  end
29
29
 
30
- # File railties/lib/rails_generator/generators/applications/app/template_runner.rb, line 69
31
- def plugin(name, options)
32
- log 'plugin', name
33
-
34
- if options[:git] && options[:submodule]
35
- in_root do
36
- branch = "-b #{options[:branch]}" if options[:branch]
37
- Git.run("submodule add #{branch} #{options[:git]} vendor/plugins/#{name}")
38
- end
39
- elsif options[:git] || options[:svn]
40
- in_root do
41
- run_ruby_script("script/plugin install #{options[:svn] || options[:git]}", false)
42
- end
43
- else
44
- log "! no git or svn provided for #{name}. skipping..."
45
- end
46
- end
47
-
48
30
  def add_plugins(plugin_names, options={})
49
31
  git_root = options[:devel] ? 'git@github.com:gnuine' : 'git://github.com/gnuine'
50
32
  plugin_names.each { |name| plugin name, :git => "#{git_root}/#{name}.git", :branch => options[:branch], :submodule => true }
@@ -53,28 +35,30 @@ end
53
35
  appname = "<%= @opts[:app_name] %>"
54
36
  exception_recipient = "<%= @opts[:exception_recipient] %>"
55
37
  sender_address = "<%= @opts[:sender_address] %>"
56
- # Remove rails temporary directories
57
- ["./tmp/pids", "./tmp/sessions", "./tmp/sockets", "./tmp/cache"].each do |f|
58
- run("rmdir ./#{f}")
59
- end
60
- # Hold empty dirs by adding .gitignore to each (to avoid git missing needed empty dirs)
61
- run("find . \\( -type d -empty \\) -and \\( -not -regex ./\\.git.* \\) -exec touch {}/.gitignore \\;")
38
+ # Hold empty dirs by adding .gitkeep to each (to avoid git missing needed empty dirs)
39
+ run("find . \\( -type d -empty \\) -and \\( -not -regex ./\\.git.* \\) -exec touch {}/.gitkeep \\;")
62
40
 
63
41
  # git:rails:new_app
64
42
  git :init
65
43
 
66
44
  # Add default files to ignore (for Rails) to git
67
45
  file '.gitignore', <<-CODE
46
+ # See http://help.github.com/ignore-files/ for more about ignoring files.
47
+
48
+ # Ignore bundler config
49
+ .bundle
50
+
68
51
  log/\*.log
69
52
  log/\*.pid
70
53
  db/\*.db
71
54
  db/\*.sqlite3
72
55
  db/schema.rb
73
- tmp/\*\*/\*
56
+ /tmp
57
+ /nbproject
58
+ .rvmrc
74
59
  .DS_Store
75
60
  doc/api
76
61
  doc/app
77
- config/database.yml
78
62
  CODE
79
63
  initializer 'ubiquo_config.rb', <<-CODE
80
64
  Ubiquo::Config.add do |config|
@@ -90,20 +74,6 @@ Ubiquo::Config.add do |config|
90
74
  end
91
75
  CODE
92
76
 
93
- # Rakefile to avoid deprecation warnings for Rdoc
94
- file 'Rakefile', <<-CODE
95
- # Add your own tasks in files placed in lib/tasks ending in .rake,
96
- # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
97
-
98
- require(File.join(File.dirname(__FILE__), 'config', 'boot'))
99
-
100
- require 'rake'
101
- require 'rake/testtask'
102
- require 'rdoc/task'
103
-
104
- require 'tasks/rails'
105
- CODE
106
-
107
77
  # Initializer for ubiquo crontab
108
78
  initializer 'ubiquo_crontab.rb', <<-CODE
109
79
  # -*- coding: utf-8 -*-
@@ -157,15 +127,6 @@ ExceptionNotifier.exception_recipients = %w( #{exception_recipient} )
157
127
  ExceptionNotifier.sender_address = %("Application Error" <#{sender_address}>)
158
128
  ExceptionNotifier.email_prefix = "[#{appname} \#\{RAILS_ENV\} ERROR]"
159
129
  CODE
160
- # Initializer for session
161
- # Needs 1 param:
162
- # appname -> Application Name (Ex: test)
163
- initializer 'session_store.rb', <<-CODE
164
- ActionController::Base.session = {
165
- :key => "_ubiquo_#{appname}_session",
166
- :secret => '#{(1..40).map { |x| (65 + rand(26)).chr }.join}'
167
- }
168
- CODE
169
130
  postgresql = <<-CODE
170
131
  base_config: &base_config
171
132
  encoding: unicode
@@ -248,117 +209,29 @@ case choosen_adapter
248
209
  end
249
210
  # gnuine routes.rb
250
211
  ubiquo_routes = selected_plugins.map do |plugin|
251
- " map.from_plugin :#{plugin}"
212
+ " #map.from_plugin :#{plugin}"
252
213
  end.join("\n")
253
214
  file 'config/routes.rb', <<-CODE
254
- ActionController::Routing::Routes.draw do |map|
215
+ Rails32::Application.routes.draw do
216
+ end
217
+ #ActionController::Routing::Routes.draw do |map|
255
218
 
256
- map.namespace :ubiquo do |ubiquo|
257
- end
219
+ # map.namespace :ubiquo do |ubiquo|
220
+ # end
258
221
 
259
- Translate::Routes.translation_ui(map) unless Rails.env.production?
222
+ # Translate::Routes.translation_ui(map) unless Rails.env.production?
260
223
  # Ubiquo plugins routes. See routes.rb from each plugin path.
261
224
  #{ubiquo_routes}
262
225
 
263
226
  ############# default routes
264
227
  #map.connect ':controller/:action/:id'
265
228
  #map.connect ':controller/:action/:id.:format'
266
- end
229
+ #end
267
230
  CODE
268
231
  # default rails environment.rb
269
- file 'config/environment.rb', <<-CODE
270
- # Be sure to restart your server when you modify this file
271
-
272
- # Specifies gem version of Rails to use when vendor/rails is not present
273
- RAILS_GEM_VERSION = '<%= @opts[:rails] %>' unless defined? RAILS_GEM_VERSION
274
-
275
- # Bootstrap the Rails environment, frameworks, and default configuration
276
- require File.join(File.dirname(__FILE__), 'boot')
277
-
278
- Rails::Initializer.run do |config|
279
- # Settings in config/environments/* take precedence over those specified here.
280
- # Application configuration should go into files in config/initializers
281
- # -- all .rb files in that directory are automatically loaded.
282
-
283
- # Add additional load paths for your own custom dirs
284
-
285
- # Specify gems that this application depends on.
286
- # They can then be installed with "rake gems:install" on new installations.
287
- # config.gem "bj"
288
- # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
289
- # config.gem "aws-s3", :lib => "aws/s3"
290
- # config.gem "rmagick", :lib => 'RMagick'
291
-
292
- # Only load the plugins named here, in the order given (default is alphabetical).
293
- # :all can be used as a placeholder for all plugins not explicitly named
294
- config.plugins = [ :ubiquo_core, :all ]
295
-
296
- # Skip frameworks you're not going to use. To use Rails without a database
297
- # you must remove the Active Record framework.
298
- # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
299
-
300
- # Activate observers that should always be running
301
- # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
302
-
303
- # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
304
- # Run "rake -D time" for a list of tasks for finding time zone names.
305
- config.time_zone = 'UTC'
306
-
307
- # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
308
- # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
309
- # config.i18n.default_locale = :de
310
- config.i18n.load_path.unshift(Dir.glob(File.join("config", "locales", "**","*.{rb,yml}"))).flatten!
311
- config.i18n.default_locale = :<%= @opts[:locale] %>
312
- end
313
- CODE
314
232
  ubiquo_branch = <%= @opts[:template] == :edge ? 'nil' : "'0.8-stable'" %>
315
233
  add_plugins(selected_plugins + external_plugins, :branch => ubiquo_branch, :devel => <%= @opts[:devel] ? true : false %>)
316
234
 
317
- rake("rails:update")
318
- rake("calendardateselect:install")
319
- rake("ubiquo:install OVERWRITE=yes")
320
-
321
- # Bundler setup
322
- gsub_file 'config/boot.rb', /Rails\.boot!/ do <<-CODE
323
- class Rails::Boot
324
- def run
325
- load_initializer
326
-
327
- Rails::Initializer.class_eval do
328
- def load_gems
329
- @bundler_loaded ||= Bundler.require :default, Rails.env
330
- end
331
- end
332
-
333
- Rails::Initializer.run(:set_load_path)
334
- end
335
- end
336
-
337
- Rails.boot!
338
- CODE
339
- end
340
- file 'config/preinitializer.rb', <<-CODE
341
- begin
342
- require "rubygems"
343
- require "bundler"
344
- rescue LoadError
345
- raise "Could not load the bundler gem. Install it with `gem install bundler`."
346
- end
347
-
348
- if Gem::Version.new(Bundler::VERSION) <= Gem::Version.new("0.9.24")
349
- raise RuntimeError, "Your bundler version is too old for Rails 2.3." +
350
- "Run `gem install bundler` to upgrade."
351
- end
352
-
353
- begin
354
- # Set up load paths for all bundled gems
355
- ENV["BUNDLE_GEMFILE"] = File.expand_path("../../Gemfile", __FILE__)
356
- Bundler.setup
357
- rescue Bundler::GemNotFound
358
- raise RuntimeError, "Bundler couldn't find some gems." +
359
- "Did you run `bundle install`?"
360
- end
361
- CODE
362
235
  adapter_gem = case choosen_adapter
363
236
  when "mysql" then "mysql"
364
237
  when "sqlite" then "sqlite3"
@@ -366,45 +239,68 @@ adapter_gem = case choosen_adapter
366
239
  end
367
240
  jruby_adapter_gem = adapter_gem == "pg" ? "postgres" : adapter_gem
368
241
  file 'Gemfile', <<-CODE
369
- source "http://rubygems.org"
242
+ source "https://rubygems.org"
370
243
 
371
- gem "rails", "= 2.3.14"
372
- gem "lockfile", ">= 1.4.3"
373
- gem "i18n", "< 0.5.0"
374
- gem "rdoc", ">= 2.4.2"
375
- <% if @opts[:profile] == :complete # used in i18n %>
376
- gem 'routing-filter', '~> 0.2.4', :require => false
377
- <% end %>
244
+ gem "rails", "= 3.2.0.rc1"
378
245
 
379
246
  platforms :mri_18 do
380
247
  gem "#{adapter_gem}"
381
248
  end
382
249
 
383
- platforms :jruby do
384
- gem "activerecord-jdbc-adapter", "~> 1.1.1"
385
- gem "jdbc-#{jruby_adapter_gem}"
386
- gem "jruby-openssl", "~> 0.7.3"
387
- end
250
+ group :assets do
251
+ gem 'sass-rails', '~> 3.2.0'
252
+ gem 'coffee-rails', '~> 3.2.0'
388
253
 
389
- group :development do
390
- gem "ruby-debug"
391
- gem "ya2yaml", ">= 0.2.6"
392
- gem "highline", ">= 1.5.2"
393
- gem "ffi-ncurses", "~> 0.3.3", :platforms => :jruby
254
+ gem 'uglifier', '>= 1.0.3'
394
255
  end
395
256
 
257
+ gem 'linecache19', :git => 'git://github.com/mark-moseley/linecache'
258
+ gem 'ruby-debug-base19x', '~> 0.11.30.pre4'
259
+ gem 'ruby-debug19'
260
+
261
+ gem 'jquery-rails'
262
+
396
263
  group :test do
397
264
  gem "mocha", ">= 0.9.8", :require => false
398
265
  end
266
+ <% if @opts[:profile] == :complete # used in i18n %>
267
+ #gem 'routing-filter', '~> 0.2.4', :require => false
268
+ <% end %>
269
+
270
+ platforms :jruby do
271
+ #gem "activerecord-jdbc-adapter", "~> 1.1.1"
272
+ #gem "jdbc-#{jruby_adapter_gem}"
273
+ #gem "jruby-openssl", "~> 0.7.3"
274
+ end
275
+
276
+ group :development do
277
+ #gem "ya2yaml", ">= 0.2.6"
278
+ #gem "highline", ">= 1.5.2"
279
+ #gem "ffi-ncurses", "~> 0.3.3", :platforms => :jruby
280
+ end
399
281
  CODE
282
+
283
+ <% if @opts[:rvm] %>
284
+ run "rvm gemset create #{appname}"
285
+ file '.rvmrc', <<-CODE
286
+ rvm gemset use #{appname}
287
+ CODE
288
+ run "rvm @#{appname} do gem install bundler --no-ri --no-rdoc"
289
+ <% end %>
290
+
400
291
  # we need to take care of Jruby
292
+ bundle_command = "<%= @opts[:rvm] ? 'rvm @#{appname} do ' : '' %> bundle install"
401
293
  <% if RUBY_PLATFORM =~ /java/ %>
402
- run "jruby -S bundle install"
294
+ run "jruby -S #{bundle_command}"
403
295
  <% else %>
404
- run "bundle install"
296
+ run" #{bundle_command}"
405
297
  <% end %>
406
298
  # End of bundler setup
407
299
 
300
+ rake("rails:update")
301
+ rake("calendardateselect:install")
302
+ rake("ubiquo:install OVERWRITE=yes")
303
+
408
304
  <% if RUBY_PLATFORM =~ /java/ %>
409
305
  generate(:jdbc)
410
306
  <% end %>
data/ubiquo.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "ubiquo"
8
- s.version = "0.6.3"
8
+ s.version = "0.9.0.b1"
9
9
 
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Albert Callarisa", "Jordi Beltran", "Bernat Foj", "Eric García", "Felip Ladrón", "David Lozano", "Antoni Reina", "Ramon Salvadó", "Arnau Sánchez"]
12
- s.date = "2011-12-16"
10
+ s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Albert Callarisa", "Jordi Beltran", "Bernat Foj", "Eric Garc\303\255a", "Felip Ladr\303\263n", "David Lozano", "Antoni Reina", "Ramon Salvad\303\263", "Arnau S\303\241nchez"]
12
+ s.date = "2012-01-04"
13
13
  s.description = "This gem provides a command-line interface to speed up the creation of ubiquo based apps."
14
14
  s.email = "rsalvado@gnuine.com"
15
15
  s.executables = ["ubiquo"]
@@ -43,33 +43,15 @@ Gem::Specification.new do |s|
43
43
  s.specification_version = 3
44
44
 
45
45
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
46
- s.add_runtime_dependency(%q<rails>, ["= 2.3.14"])
47
- s.add_runtime_dependency(%q<i18n>, ["< 0.5.0"])
48
- s.add_runtime_dependency(%q<lockfile>, [">= 1.4.3"])
46
+ s.add_runtime_dependency(%q<rails>, ["~> 3.2.0.rc1"])
49
47
  s.add_runtime_dependency(%q<bundler>, [">= 1.0.10"])
50
- s.add_runtime_dependency(%q<rdoc>, [">= 2.4.2"])
51
- s.add_development_dependency(%q<mocha>, [">= 0.9.8"])
52
- s.add_development_dependency(%q<highline>, [">= 1.5.2"])
53
- s.add_development_dependency(%q<ya2yaml>, [">= 0.26"])
54
48
  else
55
- s.add_dependency(%q<rails>, ["= 2.3.14"])
56
- s.add_dependency(%q<i18n>, ["< 0.5.0"])
57
- s.add_dependency(%q<lockfile>, [">= 1.4.3"])
49
+ s.add_dependency(%q<rails>, ["~> 3.2.0.rc1"])
58
50
  s.add_dependency(%q<bundler>, [">= 1.0.10"])
59
- s.add_dependency(%q<rdoc>, [">= 2.4.2"])
60
- s.add_dependency(%q<mocha>, [">= 0.9.8"])
61
- s.add_dependency(%q<highline>, [">= 1.5.2"])
62
- s.add_dependency(%q<ya2yaml>, [">= 0.26"])
63
51
  end
64
52
  else
65
- s.add_dependency(%q<rails>, ["= 2.3.14"])
66
- s.add_dependency(%q<i18n>, ["< 0.5.0"])
67
- s.add_dependency(%q<lockfile>, [">= 1.4.3"])
53
+ s.add_dependency(%q<rails>, ["~> 3.2.0.rc1"])
68
54
  s.add_dependency(%q<bundler>, [">= 1.0.10"])
69
- s.add_dependency(%q<rdoc>, [">= 2.4.2"])
70
- s.add_dependency(%q<mocha>, [">= 0.9.8"])
71
- s.add_dependency(%q<highline>, [">= 1.5.2"])
72
- s.add_dependency(%q<ya2yaml>, [">= 0.26"])
73
55
  end
74
56
  end
75
57
 
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ubiquo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
5
- prerelease:
4
+ hash: 229
5
+ prerelease: 6
6
6
  segments:
7
7
  - 0
8
- - 6
9
- - 3
10
- version: 0.6.3
8
+ - 9
9
+ - 0
10
+ - b
11
+ - 1
12
+ version: 0.9.0.b1
11
13
  platform: ruby
12
14
  authors:
13
15
  - Albert Callarisa
@@ -23,7 +25,7 @@ autorequire:
23
25
  bindir: bin
24
26
  cert_chain: []
25
27
 
26
- date: 2011-12-16 00:00:00 Z
28
+ date: 2012-01-04 00:00:00 Z
27
29
  dependencies:
28
30
  - !ruby/object:Gem::Dependency
29
31
  name: rails
@@ -31,52 +33,22 @@ dependencies:
31
33
  requirement: &id001 !ruby/object:Gem::Requirement
32
34
  none: false
33
35
  requirements:
34
- - - "="
36
+ - - ~>
35
37
  - !ruby/object:Gem::Version
36
- hash: 31
38
+ hash: 15424087
37
39
  segments:
38
- - 2
39
40
  - 3
40
- - 14
41
- version: 2.3.14
42
- type: :runtime
43
- version_requirements: *id001
44
- - !ruby/object:Gem::Dependency
45
- name: i18n
46
- prerelease: false
47
- requirement: &id002 !ruby/object:Gem::Requirement
48
- none: false
49
- requirements:
50
- - - <
51
- - !ruby/object:Gem::Version
52
- hash: 11
53
- segments:
54
- - 0
55
- - 5
41
+ - 2
56
42
  - 0
57
- version: 0.5.0
58
- type: :runtime
59
- version_requirements: *id002
60
- - !ruby/object:Gem::Dependency
61
- name: lockfile
62
- prerelease: false
63
- requirement: &id003 !ruby/object:Gem::Requirement
64
- none: false
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- hash: 1
69
- segments:
43
+ - rc
70
44
  - 1
71
- - 4
72
- - 3
73
- version: 1.4.3
45
+ version: 3.2.0.rc1
74
46
  type: :runtime
75
- version_requirements: *id003
47
+ version_requirements: *id001
76
48
  - !ruby/object:Gem::Dependency
77
49
  name: bundler
78
50
  prerelease: false
79
- requirement: &id004 !ruby/object:Gem::Requirement
51
+ requirement: &id002 !ruby/object:Gem::Requirement
80
52
  none: false
81
53
  requirements:
82
54
  - - ">="
@@ -88,70 +60,7 @@ dependencies:
88
60
  - 10
89
61
  version: 1.0.10
90
62
  type: :runtime
91
- version_requirements: *id004
92
- - !ruby/object:Gem::Dependency
93
- name: rdoc
94
- prerelease: false
95
- requirement: &id005 !ruby/object:Gem::Requirement
96
- none: false
97
- requirements:
98
- - - ">="
99
- - !ruby/object:Gem::Version
100
- hash: 27
101
- segments:
102
- - 2
103
- - 4
104
- - 2
105
- version: 2.4.2
106
- type: :runtime
107
- version_requirements: *id005
108
- - !ruby/object:Gem::Dependency
109
- name: mocha
110
- prerelease: false
111
- requirement: &id006 !ruby/object:Gem::Requirement
112
- none: false
113
- requirements:
114
- - - ">="
115
- - !ruby/object:Gem::Version
116
- hash: 43
117
- segments:
118
- - 0
119
- - 9
120
- - 8
121
- version: 0.9.8
122
- type: :development
123
- version_requirements: *id006
124
- - !ruby/object:Gem::Dependency
125
- name: highline
126
- prerelease: false
127
- requirement: &id007 !ruby/object:Gem::Requirement
128
- none: false
129
- requirements:
130
- - - ">="
131
- - !ruby/object:Gem::Version
132
- hash: 7
133
- segments:
134
- - 1
135
- - 5
136
- - 2
137
- version: 1.5.2
138
- type: :development
139
- version_requirements: *id007
140
- - !ruby/object:Gem::Dependency
141
- name: ya2yaml
142
- prerelease: false
143
- requirement: &id008 !ruby/object:Gem::Requirement
144
- none: false
145
- requirements:
146
- - - ">="
147
- - !ruby/object:Gem::Version
148
- hash: 63
149
- segments:
150
- - 0
151
- - 26
152
- version: "0.26"
153
- type: :development
154
- version_requirements: *id008
63
+ version_requirements: *id002
155
64
  description: This gem provides a command-line interface to speed up the creation of ubiquo based apps.
156
65
  email: rsalvado@gnuine.com
157
66
  executables:
@@ -197,12 +106,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
197
106
  required_rubygems_version: !ruby/object:Gem::Requirement
198
107
  none: false
199
108
  requirements:
200
- - - ">="
109
+ - - ">"
201
110
  - !ruby/object:Gem::Version
202
- hash: 3
111
+ hash: 25
203
112
  segments:
204
- - 0
205
- version: "0"
113
+ - 1
114
+ - 3
115
+ - 1
116
+ version: 1.3.1
206
117
  requirements: []
207
118
 
208
119
  rubyforge_project: