need_label 0.1.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5193845409dd8b3135875c34d8a07c72920ec516
4
+ data.tar.gz: c965e696a57e557a594124706d8a00939dd99e37
5
+ SHA512:
6
+ metadata.gz: e77a05db2825165053d81e4e715fbed0b2e442decb3cc0726c04cbb76c1c84082a8c262a8ec34f410748cf8f88a8765bfc8305f9962af93c1de19aa30fd2dd43
7
+ data.tar.gz: 36d9acc055fef475c08c6dbacbea60eb20d87b2d6b4b6e67f9d09837f7d49d860ba2594287387aa80c0cdd110f0539c06b774d8e5300daf01c23745fb47371fd
data/.gitignore ADDED
@@ -0,0 +1,53 @@
1
+ # rcov generated
2
+ coverage
3
+
4
+ # rdoc generated
5
+ rdoc
6
+
7
+ # yard generated
8
+ doc
9
+ .yardoc
10
+
11
+ # bundler
12
+ .bundle
13
+
14
+ # jeweler generated
15
+ pkg
16
+
17
+ # Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
18
+ #
19
+ # * Create a file at ~/.gitignore
20
+ # * Include files you want ignored
21
+ # * Run: git config --global core.excludesfile ~/.gitignore
22
+ #
23
+ # After doing this, these files will be ignored in all your git projects,
24
+ # saving you from having to 'pollute' every project you touch with them
25
+ #
26
+ # Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
27
+ #
28
+ # For MacOS:
29
+ #
30
+ .DS_Store
31
+
32
+ # For TextMate
33
+ #*.tmproj
34
+ #tmtags
35
+
36
+ # For emacs:
37
+ *~
38
+ \#*
39
+ .\#*
40
+
41
+ # For vim:
42
+ #*.swp
43
+
44
+ # For redcar:
45
+ #.redcar
46
+
47
+ # For rubinius:
48
+ #*.rbc
49
+
50
+ .idea
51
+ *.gem
52
+ log
53
+
data/Gemfile CHANGED
@@ -1,25 +1,2 @@
1
- source "http://rubygems.org"
2
- # Add dependencies required to use your gem here.
3
- # Example:
4
- # gem "activesupport", ">= 2.3.5"
5
-
6
- #gem 'activerecord', rails_version
7
- #gem 'actionpack', rails_version
8
- gem 'rails',">= 3.0.7"
9
-
10
- # Add dependencies to develop your gem here.
11
- # Include everything needed to run rake, tests, features, etc.
12
- group :development do
13
- gem "rspec", "~> 2.7.0"
14
- gem "bundler","~> 1.0.0"
15
- gem "jeweler", "~> 1.6.4"
16
- gem "rcov", ">= 0"
17
- gem 'sqlite3',"~> 1.3.0"
18
- gem 'rspec-rails', "~> 2.7.0"
19
- gem 'capybara', "~> 1.1.0"
20
- gem 'nokogiri', "~> 1.5.0"
21
- end
22
-
23
- group :test do
24
- gem 'rr', "~> 1.0.0"
25
- end
1
+ source 'https://rubygems.org'
2
+ gemspec
data/Gemfile.lock CHANGED
@@ -1,124 +1,126 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ need_label (0.2.1)
5
+ rails (>= 3.0.7)
6
+
1
7
  GEM
2
- remote: http://rubygems.org/
8
+ remote: https://rubygems.org/
3
9
  specs:
4
- actionmailer (3.1.1)
5
- actionpack (= 3.1.1)
6
- mail (~> 2.3.0)
7
- actionpack (3.1.1)
8
- activemodel (= 3.1.1)
9
- activesupport (= 3.1.1)
10
+ actionmailer (3.2.13)
11
+ actionpack (= 3.2.13)
12
+ mail (~> 2.5.3)
13
+ actionpack (3.2.13)
14
+ activemodel (= 3.2.13)
15
+ activesupport (= 3.2.13)
10
16
  builder (~> 3.0.0)
11
17
  erubis (~> 2.7.0)
12
- i18n (~> 0.6)
13
- rack (~> 1.3.2)
14
- rack-cache (~> 1.1)
15
- rack-mount (~> 0.8.2)
18
+ journey (~> 1.0.4)
19
+ rack (~> 1.4.5)
20
+ rack-cache (~> 1.2)
16
21
  rack-test (~> 0.6.1)
17
- sprockets (~> 2.0.2)
18
- activemodel (3.1.1)
19
- activesupport (= 3.1.1)
22
+ sprockets (~> 2.2.1)
23
+ activemodel (3.2.13)
24
+ activesupport (= 3.2.13)
20
25
  builder (~> 3.0.0)
21
- i18n (~> 0.6)
22
- activerecord (3.1.1)
23
- activemodel (= 3.1.1)
24
- activesupport (= 3.1.1)
25
- arel (~> 2.2.1)
26
+ activerecord (3.2.13)
27
+ activemodel (= 3.2.13)
28
+ activesupport (= 3.2.13)
29
+ arel (~> 3.0.2)
26
30
  tzinfo (~> 0.3.29)
27
- activeresource (3.1.1)
28
- activemodel (= 3.1.1)
29
- activesupport (= 3.1.1)
30
- activesupport (3.1.1)
31
+ activeresource (3.2.13)
32
+ activemodel (= 3.2.13)
33
+ activesupport (= 3.2.13)
34
+ activesupport (3.2.13)
35
+ i18n (= 0.6.1)
31
36
  multi_json (~> 1.0)
32
- arel (2.2.1)
33
- builder (3.0.0)
34
- capybara (1.1.1)
37
+ arel (3.0.2)
38
+ builder (3.0.4)
39
+ capybara (1.1.4)
35
40
  mime-types (>= 1.16)
36
41
  nokogiri (>= 1.3.3)
37
42
  rack (>= 1.0.0)
38
43
  rack-test (>= 0.5.4)
39
44
  selenium-webdriver (~> 2.0)
40
45
  xpath (~> 0.1.4)
41
- childprocess (0.2.2)
42
- ffi (~> 1.0.6)
43
- diff-lcs (1.1.3)
46
+ childprocess (0.3.9)
47
+ ffi (~> 1.0, >= 1.0.11)
48
+ diff-lcs (1.2.4)
44
49
  erubis (2.7.0)
45
- ffi (1.0.9)
46
- git (1.2.5)
47
- hike (1.2.1)
48
- i18n (0.6.0)
49
- jeweler (1.6.4)
50
- bundler (~> 1.0)
51
- git (>= 1.2.5)
52
- rake
53
- json (1.6.1)
54
- json_pure (1.6.1)
55
- mail (2.3.0)
56
- i18n (>= 0.4.0)
50
+ ffi (1.8.1)
51
+ hike (1.2.3)
52
+ i18n (0.6.1)
53
+ journey (1.0.4)
54
+ json (1.8.0)
55
+ mail (2.5.4)
57
56
  mime-types (~> 1.16)
58
57
  treetop (~> 1.4.8)
59
- mime-types (1.17.2)
60
- multi_json (1.0.3)
61
- nokogiri (1.5.0)
62
- polyglot (0.3.2)
63
- rack (1.3.5)
64
- rack-cache (1.1)
58
+ mime-types (1.23)
59
+ mini_portile (0.5.0)
60
+ multi_json (1.7.6)
61
+ nokogiri (1.6.0)
62
+ mini_portile (~> 0.5.0)
63
+ polyglot (0.3.3)
64
+ rack (1.4.5)
65
+ rack-cache (1.2)
65
66
  rack (>= 0.4)
66
- rack-mount (0.8.3)
67
- rack (>= 1.0.0)
68
- rack-ssl (1.3.2)
67
+ rack-ssl (1.3.3)
69
68
  rack
70
- rack-test (0.6.1)
69
+ rack-test (0.6.2)
71
70
  rack (>= 1.0)
72
- rails (3.1.1)
73
- actionmailer (= 3.1.1)
74
- actionpack (= 3.1.1)
75
- activerecord (= 3.1.1)
76
- activeresource (= 3.1.1)
77
- activesupport (= 3.1.1)
71
+ rails (3.2.13)
72
+ actionmailer (= 3.2.13)
73
+ actionpack (= 3.2.13)
74
+ activerecord (= 3.2.13)
75
+ activeresource (= 3.2.13)
76
+ activesupport (= 3.2.13)
78
77
  bundler (~> 1.0)
79
- railties (= 3.1.1)
80
- railties (3.1.1)
81
- actionpack (= 3.1.1)
82
- activesupport (= 3.1.1)
78
+ railties (= 3.2.13)
79
+ railties (3.2.13)
80
+ actionpack (= 3.2.13)
81
+ activesupport (= 3.2.13)
83
82
  rack-ssl (~> 1.3.2)
84
83
  rake (>= 0.8.7)
85
84
  rdoc (~> 3.4)
86
- thor (~> 0.14.6)
87
- rake (0.9.2.2)
88
- rcov (0.9.11)
89
- rdoc (3.11)
85
+ thor (>= 0.14.6, < 2.0)
86
+ rake (10.0.4)
87
+ rdoc (3.12.2)
90
88
  json (~> 1.4)
91
- rr (1.0.4)
92
- rspec (2.7.0)
93
- rspec-core (~> 2.7.0)
94
- rspec-expectations (~> 2.7.0)
95
- rspec-mocks (~> 2.7.0)
96
- rspec-core (2.7.1)
97
- rspec-expectations (2.7.0)
98
- diff-lcs (~> 1.1.2)
99
- rspec-mocks (2.7.0)
100
- rspec-rails (2.7.0)
101
- actionpack (~> 3.0)
102
- activesupport (~> 3.0)
103
- railties (~> 3.0)
104
- rspec (~> 2.7.0)
105
- rubyzip (0.9.4)
106
- selenium-webdriver (2.10.0)
107
- childprocess (>= 0.2.1)
108
- ffi (= 1.0.9)
109
- json_pure
89
+ rr (1.1.0)
90
+ rspec (2.13.0)
91
+ rspec-core (~> 2.13.0)
92
+ rspec-expectations (~> 2.13.0)
93
+ rspec-mocks (~> 2.13.0)
94
+ rspec-core (2.13.1)
95
+ rspec-expectations (2.13.0)
96
+ diff-lcs (>= 1.1.3, < 2.0)
97
+ rspec-mocks (2.13.1)
98
+ rspec-rails (2.13.2)
99
+ actionpack (>= 3.0)
100
+ activesupport (>= 3.0)
101
+ railties (>= 3.0)
102
+ rspec-core (~> 2.13.0)
103
+ rspec-expectations (~> 2.13.0)
104
+ rspec-mocks (~> 2.13.0)
105
+ rubyzip (0.9.9)
106
+ selenium-webdriver (2.33.0)
107
+ childprocess (>= 0.2.5)
108
+ multi_json (~> 1.0)
110
109
  rubyzip
111
- sprockets (2.0.3)
110
+ websocket (~> 1.0.4)
111
+ sprockets (2.2.2)
112
112
  hike (~> 1.2)
113
+ multi_json (~> 1.0)
113
114
  rack (~> 1.0)
114
115
  tilt (~> 1.1, != 1.3.0)
115
- sqlite3 (1.3.4)
116
- thor (0.14.6)
117
- tilt (1.3.3)
118
- treetop (1.4.10)
116
+ sqlite3 (1.3.7)
117
+ thor (0.18.1)
118
+ tilt (1.4.1)
119
+ treetop (1.4.14)
119
120
  polyglot
120
121
  polyglot (>= 0.3.1)
121
- tzinfo (0.3.30)
122
+ tzinfo (0.3.37)
123
+ websocket (1.0.7)
122
124
  xpath (0.1.4)
123
125
  nokogiri (~> 1.3)
124
126
 
@@ -126,13 +128,11 @@ PLATFORMS
126
128
  ruby
127
129
 
128
130
  DEPENDENCIES
129
- bundler (~> 1.0.0)
130
- capybara (~> 1.1.0)
131
- jeweler (~> 1.6.4)
132
- nokogiri (~> 1.5.0)
133
- rails (>= 3.0.7)
134
- rcov
135
- rr (~> 1.0.0)
136
- rspec (~> 2.7.0)
137
- rspec-rails (~> 2.7.0)
131
+ bundler (~> 1.3)
132
+ capybara (~> 1.1)
133
+ need_label!
134
+ rake
135
+ rr
136
+ rspec (~> 2.13)
137
+ rspec-rails
138
138
  sqlite3 (~> 1.3.0)