icebreaker 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,75 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- icebreaker (0.0.3)
5
- rails
4
+ icebreaker (0.1.2)
6
5
  thor
7
6
 
8
7
  GEM
9
8
  remote: http://rubygems.org/
10
9
  specs:
11
- abstract (1.0.0)
12
- actionmailer (3.0.4)
13
- actionpack (= 3.0.4)
14
- mail (~> 2.2.15)
15
- actionpack (3.0.4)
16
- activemodel (= 3.0.4)
17
- activesupport (= 3.0.4)
18
- builder (~> 2.1.2)
19
- erubis (~> 2.6.6)
20
- i18n (~> 0.4)
21
- rack (~> 1.2.1)
22
- rack-mount (~> 0.6.13)
23
- rack-test (~> 0.5.7)
24
- tzinfo (~> 0.3.23)
25
- activemodel (3.0.4)
26
- activesupport (= 3.0.4)
27
- builder (~> 2.1.2)
28
- i18n (~> 0.4)
29
- activerecord (3.0.4)
30
- activemodel (= 3.0.4)
31
- activesupport (= 3.0.4)
32
- arel (~> 2.0.2)
33
- tzinfo (~> 0.3.23)
34
- activeresource (3.0.4)
35
- activemodel (= 3.0.4)
36
- activesupport (= 3.0.4)
37
- activesupport (3.0.4)
38
- arel (2.0.8)
39
- builder (2.1.2)
40
- erubis (2.6.6)
41
- abstract (>= 1.0.0)
42
- i18n (0.5.0)
43
- mail (2.2.15)
44
- activesupport (>= 2.3.6)
45
- i18n (>= 0.4.0)
46
- mime-types (~> 1.16)
47
- treetop (~> 1.4.8)
48
- mime-types (1.16)
49
- polyglot (0.3.1)
50
- rack (1.2.1)
51
- rack-mount (0.6.13)
52
- rack (>= 1.0.0)
53
- rack-test (0.5.7)
54
- rack (>= 1.0)
55
- rails (3.0.4)
56
- actionmailer (= 3.0.4)
57
- actionpack (= 3.0.4)
58
- activerecord (= 3.0.4)
59
- activeresource (= 3.0.4)
60
- activesupport (= 3.0.4)
61
- bundler (~> 1.0)
62
- railties (= 3.0.4)
63
- railties (3.0.4)
64
- actionpack (= 3.0.4)
65
- activesupport (= 3.0.4)
66
- rake (>= 0.8.7)
67
- thor (~> 0.14.4)
68
- rake (0.8.7)
69
10
  thor (0.14.6)
70
- treetop (1.4.9)
71
- polyglot (>= 0.3.1)
72
- tzinfo (0.3.24)
73
11
 
74
12
  PLATFORMS
75
13
  ruby
data/bin/ice CHANGED
@@ -1,9 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  # Ensure proper version of Rails is installed
4
- unless `gem which rails`.chomp =~ /3.1/
4
+ unless `gem which rails`.chomp =~ /3.1.0.rc/
5
5
  puts "IceBreaker requires rails 3.1 or greater. Please install with the following command and then re-run the ice command:"
6
- puts "$ gem install rails -v 3.1.0.beta1 --no-ri --no-rdoc"
6
+ puts "$ gem install rails -v 3.1.0.rc4 --no-ri --no-rdoc"
7
7
  exit 0
8
8
  end
9
9
 
data/icebreaker.gemspec CHANGED
@@ -9,9 +9,8 @@ Gem::Specification.new do |s|
9
9
  s.email = ["mdillon@gmail.com"]
10
10
  s.homepage = "http://github.com/markdillon/icebreaker"
11
11
  s.summary = "icebreaker-#{s.version}"
12
- s.description = "Generate a Rails 3 app with the Mongoid ORM (or OM) and RSpec for BDD testing."
12
+ s.description = "Generate a Rails 3.1 app with the Mongoid ORM (or OM) and RSpec for BDD testing."
13
13
 
14
- s.required_rubygems_version = ">= 1.6.0"
15
14
  s.rubyforge_project = "icebreaker"
16
15
 
17
16
  s.add_dependency "thor"
@@ -1,6 +1,6 @@
1
1
  require 'thor'
2
2
  require 'thor/actions'
3
- require 'active_support/secure_random'
3
+ # require 'active_support/secure_random'
4
4
 
5
5
  module IceBreaker
6
6
  class CLI < Thor
@@ -1,3 +1,3 @@
1
1
  module IceBreaker
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
data/templates/gemfile.rb CHANGED
@@ -3,42 +3,53 @@ append_file "Gemfile" do
3
3
 
4
4
  # Project Gems
5
5
 
6
- RUBY
7
- end
8
- # Rails
6
+ # View Related
7
+ gem "haml", :git => "https://github.com/nex3/haml.git"
8
+ gem 'kaminari'
9
+ gem 'gravatar_image_tag', '1.0.0.pre2'
9
10
 
10
- # MongoID
11
- gem "mongoid", :git => "http://github.com/mongoid/mongoid.git"
11
+ # Object Mapper
12
+ gem "mongoid"
12
13
  gem "bson_ext"
13
14
 
14
- # HTML, CSS and JavaScript
15
- gem "haml-rails"
16
- gem "will_paginate", "3.0.pre2"
15
+ # Date/Time Parsing
16
+ # gem 'nickel', :git => "https://github.com/lzell/nickel"
17
17
 
18
- # Crypto
18
+ # Authentication
19
+ gem "omniauth", '~> 0.2.6'
19
20
  gem "bcrypt-ruby", :require => "bcrypt"
20
21
 
21
- # Development dependencies
22
- # gem 'html5-boilerplate' # TODO: Get html5-boilerplate working
23
- gem 'rspec-rails', '2.6.0.rc6', :group => [:development]
24
- gem 'nifty-generators'
22
+ # Location Stuff
23
+ gem "simplegeo"
25
24
 
26
- # Facebook, Twitter, etc. OAuth Authentication
27
- gem "omniauth"
25
+ # FIXME: Get mongoid_geo working
26
+ # gem "mongoid_geo"
28
27
 
29
- # Development and test support
30
- gem 'factory_girl_rails', :group => [:development, :test]
31
- gem 'faker', :group => [:development, :test]
28
+ group :development do
29
+ gem "thin"
30
+ gem "rspec-rails", "2.6.1.beta1"
31
+ gem "awesome_print"
32
+ end
32
33
 
33
- # Test dependencies
34
- gem 'rspec', '2.6.0.rc6', :group => [:test]
35
- gem 'webrat', '0.7.1', :group => [:test]
34
+ group :test do
35
+ # Pretty printed test output
36
+ gem 'turn', :require => false
37
+ gem "rspec", "2.6.0"
38
+ gem "webrat", "0.7.1"
39
+ end
36
40
 
37
- # Utilities
38
- gem 'awesome_print', :group => [:development]
41
+ group :development, :test do
42
+ gem "factory_girl_rails"
43
+ gem "faker"
44
+ end
39
45
 
40
- # Heroku Support
41
- gem 'therubyracer-heroku', '0.8.1.pre3'
46
+ group :production do
47
+ gem 'unicorn'
48
+ gem 'therubyracer-heroku', '0.8.1.pre3', :group => [:production]
49
+ end
50
+
51
+ RUBY
52
+ end
42
53
 
43
54
  # Install bundled gems
44
- run 'bundle install'
55
+ run 'bundle install --binstubs --without production'
metadata CHANGED
@@ -1,49 +1,48 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: icebreaker
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
4
5
  prerelease:
5
- version: 0.1.2
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Mark Dillon
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2011-05-16 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
12
+ date: 2011-07-29 00:00:00.000000000 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
16
  name: thor
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
17
+ requirement: &70233272852140 !ruby/object:Gem::Requirement
19
18
  none: false
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: "0"
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
24
23
  type: :runtime
25
- version_requirements: *id001
26
- - !ruby/object:Gem::Dependency
27
- name: bundler
28
24
  prerelease: false
29
- requirement: &id002 !ruby/object:Gem::Requirement
25
+ version_requirements: *70233272852140
26
+ - !ruby/object:Gem::Dependency
27
+ name: bundler
28
+ requirement: &70233272851580 !ruby/object:Gem::Requirement
30
29
  none: false
31
- requirements:
32
- - - ">="
33
- - !ruby/object:Gem::Version
34
- version: "0"
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
35
34
  type: :development
36
- version_requirements: *id002
37
- description: Generate a Rails 3 app with the Mongoid ORM (or OM) and RSpec for BDD testing.
38
- email:
35
+ prerelease: false
36
+ version_requirements: *70233272851580
37
+ description: Generate a Rails 3.1 app with the Mongoid ORM (or OM) and RSpec for BDD
38
+ testing.
39
+ email:
39
40
  - mdillon@gmail.com
40
- executables:
41
+ executables:
41
42
  - ice
42
43
  extensions: []
43
-
44
44
  extra_rdoc_files: []
45
-
46
- files:
45
+ files:
47
46
  - .gitignore
48
47
  - .rvmrc
49
48
  - Gemfile
@@ -67,32 +66,29 @@ files:
67
66
  - templates/rspec_clean.rb
68
67
  - templates/rvm.rb
69
68
  - templates/test_suite.rb
69
+ has_rdoc: true
70
70
  homepage: http://github.com/markdillon/icebreaker
71
71
  licenses: []
72
-
73
72
  post_install_message:
74
73
  rdoc_options: []
75
-
76
- require_paths:
74
+ require_paths:
77
75
  - lib
78
- required_ruby_version: !ruby/object:Gem::Requirement
76
+ required_ruby_version: !ruby/object:Gem::Requirement
79
77
  none: false
80
- requirements:
81
- - - ">="
82
- - !ruby/object:Gem::Version
83
- version: "0"
84
- required_rubygems_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ! '>='
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
83
  none: false
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: 1.6.0
84
+ requirements:
85
+ - - ! '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
90
88
  requirements: []
91
-
92
89
  rubyforge_project: icebreaker
93
- rubygems_version: 1.8.2
90
+ rubygems_version: 1.6.2
94
91
  signing_key:
95
92
  specification_version: 3
96
- summary: icebreaker-0.1.2
93
+ summary: icebreaker-0.1.3
97
94
  test_files: []
98
-