tony 0.5.0 → 0.6.0

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/.gitignore CHANGED
@@ -2,3 +2,4 @@ pkg/*
2
2
  *.gem
3
3
  .bundle
4
4
  *.swp
5
+ Gemfile.lock
@@ -0,0 +1,7 @@
1
+ Tony::generators << Tony::Generator.new do |options|
2
+ options.name = "heroku"
3
+ options.description = "Adds the heroku .gems file"
4
+ options.files = {
5
+ '.gems' => ''
6
+ }
7
+ end
data/lib/tony/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Tony
2
- VERSION = "0.5.0"
2
+ VERSION = "0.6.0"
3
3
  end
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 5
7
+ - 6
8
8
  - 0
9
- version: 0.5.0
9
+ version: 0.6.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andrew Vos
@@ -43,12 +43,12 @@ files:
43
43
  - .gitignore
44
44
  - .rspec
45
45
  - Gemfile
46
- - Gemfile.lock
47
46
  - README.md
48
47
  - Rakefile
49
48
  - bin/tony
50
49
  - lib/tony.rb
51
50
  - lib/tony/generator.rb
51
+ - lib/tony/generators/heroku/heroku_generator.rb
52
52
  - lib/tony/generators/heroku_sinatra/heroku_sinatra_generator.rb
53
53
  - lib/tony/generators/rspec/Rakefile
54
54
  - lib/tony/generators/rspec/rspec_generator.rb
data/Gemfile.lock DELETED
@@ -1,25 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- tony (0.4.0)
5
- rspec
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- diff-lcs (1.1.2)
11
- rspec (2.5.0)
12
- rspec-core (~> 2.5.0)
13
- rspec-expectations (~> 2.5.0)
14
- rspec-mocks (~> 2.5.0)
15
- rspec-core (2.5.1)
16
- rspec-expectations (2.5.0)
17
- diff-lcs (~> 1.1.2)
18
- rspec-mocks (2.5.0)
19
-
20
- PLATFORMS
21
- ruby
22
-
23
- DEPENDENCIES
24
- rspec
25
- tony!