mp-gwo 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/.rvmrc +1 -0
  2. data/Gemfile +6 -0
  3. data/Gemfile.lock +40 -0
  4. data/VERSION +1 -1
  5. data/mp-gwo.gemspec +64 -0
  6. metadata +7 -3
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm --create use 1.8.7@gwo
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'http://www.rubygems.org'
2
+
3
+ gem 'rspec', '~> 1.3'
4
+ gem 'rspec-rails', '~> 1.3'
5
+ gem 'rails', '2.3.11'
6
+ gem "jeweler", "~> 1.5.2"
data/Gemfile.lock ADDED
@@ -0,0 +1,40 @@
1
+ GEM
2
+ remote: http://www.rubygems.org/
3
+ specs:
4
+ actionmailer (2.3.11)
5
+ actionpack (= 2.3.11)
6
+ actionpack (2.3.11)
7
+ activesupport (= 2.3.11)
8
+ rack (~> 1.1.0)
9
+ activerecord (2.3.11)
10
+ activesupport (= 2.3.11)
11
+ activeresource (2.3.11)
12
+ activesupport (= 2.3.11)
13
+ activesupport (2.3.11)
14
+ git (1.2.5)
15
+ jeweler (1.5.2)
16
+ bundler (~> 1.0.0)
17
+ git (>= 1.2.5)
18
+ rake
19
+ rack (1.1.2)
20
+ rails (2.3.11)
21
+ actionmailer (= 2.3.11)
22
+ actionpack (= 2.3.11)
23
+ activerecord (= 2.3.11)
24
+ activeresource (= 2.3.11)
25
+ activesupport (= 2.3.11)
26
+ rake (>= 0.8.3)
27
+ rake (0.8.7)
28
+ rspec (1.3.1)
29
+ rspec-rails (1.3.3)
30
+ rack (>= 1.0.0)
31
+ rspec (= 1.3.1)
32
+
33
+ PLATFORMS
34
+ ruby
35
+
36
+ DEPENDENCIES
37
+ jeweler (~> 1.5.2)
38
+ rails (= 2.3.11)
39
+ rspec (~> 1.3)
40
+ rspec-rails (~> 1.3)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.0
data/mp-gwo.gemspec ADDED
@@ -0,0 +1,64 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{mp-gwo}
8
+ s.version = "0.2.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Alex MacCaw", "Daniel Bornkessel", "Johannes Mentz", "Yan Minagawa", "Benjamin Krause"]
12
+ s.date = %q{2011-03-28}
13
+ s.description = %q{Google Website Optimizer Helper}
14
+ s.email = %q{github@moviepilot.com}
15
+ s.extra_rdoc_files = [
16
+ "README.markdown"
17
+ ]
18
+ s.files = [
19
+ ".rvmrc",
20
+ "Gemfile",
21
+ "Gemfile.lock",
22
+ "MIT-LICENSE",
23
+ "README.markdown",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "gwo.gemspec",
27
+ "lib/gwo.rb",
28
+ "mp-gwo.gemspec",
29
+ "rails/init.rb",
30
+ "spec/lib/gwo_spec.rb",
31
+ "spec/spec_helper.rb"
32
+ ]
33
+ s.homepage = %q{http://github.com/moviepilot/gwo}
34
+ s.licenses = ["MIT"]
35
+ s.require_paths = ["lib"]
36
+ s.rubygems_version = %q{1.5.0}
37
+ s.summary = %q{Google Website Optimizer Helper}
38
+ s.test_files = [
39
+ "spec/lib/gwo_spec.rb",
40
+ "spec/spec_helper.rb"
41
+ ]
42
+
43
+ if s.respond_to? :specification_version then
44
+ s.specification_version = 3
45
+
46
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
+ s.add_runtime_dependency(%q<rspec>, ["~> 1.3"])
48
+ s.add_runtime_dependency(%q<rspec-rails>, ["~> 1.3"])
49
+ s.add_runtime_dependency(%q<rails>, ["= 2.3.11"])
50
+ s.add_runtime_dependency(%q<jeweler>, ["~> 1.5.2"])
51
+ else
52
+ s.add_dependency(%q<rspec>, ["~> 1.3"])
53
+ s.add_dependency(%q<rspec-rails>, ["~> 1.3"])
54
+ s.add_dependency(%q<rails>, ["= 2.3.11"])
55
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
56
+ end
57
+ else
58
+ s.add_dependency(%q<rspec>, ["~> 1.3"])
59
+ s.add_dependency(%q<rspec-rails>, ["~> 1.3"])
60
+ s.add_dependency(%q<rails>, ["= 2.3.11"])
61
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
62
+ end
63
+ end
64
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mp-gwo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 1
8
+ - 2
9
9
  - 0
10
- version: 0.1.0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alex MacCaw
@@ -93,12 +93,16 @@ extensions: []
93
93
  extra_rdoc_files:
94
94
  - README.markdown
95
95
  files:
96
+ - .rvmrc
97
+ - Gemfile
98
+ - Gemfile.lock
96
99
  - MIT-LICENSE
97
100
  - README.markdown
98
101
  - Rakefile
99
102
  - VERSION
100
103
  - gwo.gemspec
101
104
  - lib/gwo.rb
105
+ - mp-gwo.gemspec
102
106
  - rails/init.rb
103
107
  - spec/lib/gwo_spec.rb
104
108
  - spec/spec_helper.rb